mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-28 17:38:55 +03:00
Merge pull request #2006 from nextcloud/bugfix/1977/fixNPEinBrowserFile
Bugfix/1977/fix NPE in BrowserFile
This commit is contained in:
commit
a5db665571
1 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ public class BrowserFile {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(browserFile.getPermissions().contains("R")){
|
if (browserFile.getPermissions() != null && browserFile.getPermissions().contains("R")) {
|
||||||
browserFile.isAllowedToReShare = true;
|
browserFile.isAllowedToReShare = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue