Fix crash if vorbis exception does not have message (#6678)

This commit is contained in:
ByteHamster 2023-10-02 21:12:45 +02:00 committed by GitHub
parent 4dc1196c39
commit da200f6139
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ public abstract class VorbisCommentReader {
readUserComment();
}
} catch (IOException e) {
Log.d(TAG, e.getMessage());
Log.d(TAG, "Vorbis parser: " + e.getMessage());
}
}