mirror of
https://github.com/mupen64plus-ae/acra.git
synced 2024-11-26 23:20:25 +00:00
Issue 138: Crash on application start
This commit is contained in:
parent
0af509b959
commit
9eef0d0f50
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,3 +2,5 @@
|
||||
.project
|
||||
.settings
|
||||
target
|
||||
pom.xml.releaseBackup
|
||||
release.properties
|
||||
|
2
pom.xml
2
pom.xml
@ -7,7 +7,7 @@
|
||||
</parent>
|
||||
<groupId>ch.acra</groupId>
|
||||
<artifactId>acra</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<version>4.3.1-SNAPSHOT</version>
|
||||
|
||||
<name>Application Crash Report for Android</name>
|
||||
|
||||
|
@ -129,7 +129,7 @@ public final class ConfigurationCollector {
|
||||
result.append(fieldName).append('=');
|
||||
if (f.getType().equals(int.class)) {
|
||||
result.append(getFieldValueName(conf, f));
|
||||
} else {
|
||||
} else if(f.get(conf) != null){
|
||||
result.append(f.get(conf).toString());
|
||||
}
|
||||
result.append('\n');
|
||||
|
Loading…
Reference in New Issue
Block a user