Some platforms do not like null Bundles

This commit is contained in:
topjohnwu
2019-11-25 19:09:54 -05:00
parent 276535dad6
commit 72edbfc455
2 changed files with 2 additions and 2 deletions

View File

@@ -154,7 +154,7 @@ public class FileProvider extends ContentProvider {
public Bundle call(String method, String arg, Bundle extras) {
if (callHandler != null)
return callHandler.call(getContext(), method, arg, extras);
return null;
return Bundle.EMPTY;
}
@Override