Skip to content

Commit

Permalink
refactor: Update content scheme declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
OS-pedrogustavobilro committed Jan 20, 2025
1 parent ea85080 commit 83841ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/ContentFilesystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public class ContentFilesystem extends Filesystem {

private final Context context;
private static final String SYNTHETIC_URI_PREFIX = "/synthetic/";
static final String CONTENT_SCHEME = "content://";
private static final String CONTENT_SCHEME_NAME = "content";
static final String CONTENT_SCHEME = CONTENT_SCHEME_NAME + "://";

public ContentFilesystem(Context context, CordovaResourceApi resourceApi) {
super(Uri.parse(CONTENT_SCHEME), CONTENT_SCHEME_NAME, resourceApi);
Expand Down

0 comments on commit 83841ca

Please sign in to comment.