Skip to content

Commit

Permalink
Fix class not found err bundleToShortString
Browse files Browse the repository at this point in the history
  • Loading branch information
Tornaco committed Nov 8, 2024
1 parent 0dd1903 commit 40a4a8a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ private static void bundleToShortString(Bundle bundle, StringBuilder b) {
}

b.append(key).append('=');
Object value = bundle.get(key);
Object value = key;
try {
value = bundle.get(key);
} catch (Throwable ignored) {

}
if (value instanceof int[]) {
b.append(Arrays.toString((int[]) ((int[]) value)));
} else if (value instanceof byte[]) {
Expand Down
2 changes: 1 addition & 1 deletion android/internal/Thanox-Internal

0 comments on commit 40a4a8a

Please sign in to comment.