Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix SitePermission crash (#3251)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored Apr 27, 2020
1 parent d673d48 commit 240f611
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public void addPermissionException(@NonNull String uri, @SitePermission.Category
.findFirst().orElse(null);

if (site == null) {
site = new SitePermission(uri,null, category);
site = new SitePermission(uri, "", category);
mSitePermissions.add(site);
}
mSitePermissionModel.insertSite(site);
Expand Down

0 comments on commit 240f611

Please sign in to comment.