Skip to content

Commit 0635d8a

Browse files
authored
If there is no module name, module should be null
1 parent 2af3888 commit 0635d8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry-android-core/src/main/java/io/sentry/android/core/internal/tombstone/TombstoneParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ private static String normalizeFunctionName(String fqFunctionName) {
227227
if (normalized.contains(".")) {
228228
return normalized.substring(0, normalized.lastIndexOf("."));
229229
} else {
230-
return "";
230+
return null;
231231
}
232232
}
233233

0 commit comments

Comments
 (0)