Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanGIG authored May 8, 2024
1 parent bea70ee commit 5ddbc3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void onCreate(@Nullable Bundle savedInstanceState) {
mContract = registerForActivityResult(new ActivityResultContracts.OpenDocumentTree(), result -> {
if (result == null) return;
var realPath = RealPathUtil.getRealPathFromURI_API19(getContext(), result);
Preference preference = findPreference("localdownload")
Preference preference = findPreference("localdownload");
if (preference != null) {
preference.setSummary(getPathFromContentUri(result));
}
Expand Down

0 comments on commit 5ddbc3b

Please sign in to comment.