Skip to content

Commit

Permalink
FileProvider: Enable file provider as default.
Browse files Browse the repository at this point in the history
  • Loading branch information
longjunyu2 committed Aug 29, 2024
1 parent 76f14be commit 85b00f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class WinlatorFilesProvider extends DocumentsProvider {
public void attachInfo(Context context, ProviderInfo info) {
super.attachInfo(context, info);
BASE_DIR = context.getDataDir();
enabled = PreferenceManager.getDefaultSharedPreferences(context).getBoolean("enable_file_provider", false);
enabled = PreferenceManager.getDefaultSharedPreferences(context).getBoolean("enable_file_provider", true);
}

@Override
Expand Down

0 comments on commit 85b00f2

Please sign in to comment.