fix: NPE when sharing an image and the URL is null

This commit is contained in:
LucasGGamerM 2023-03-21 18:51:15 -03:00
parent 4ceacae954
commit d0e4578af0
1 changed files with 2 additions and 0 deletions

View File

@ -941,6 +941,8 @@ public class UiUtils{
//
// COPIED FROM https://github.com/tuskyapp/Tusky/blob/develop/app/src/main/java/com/keylesspalace/tusky/util/LinkHelper.kt
public static boolean looksLikeMastodonUrl(String urlString) {
if(urlString == null)
return false;
URI uri;
try {
uri = new URI(urlString);