Merge pull request #6164 from ByteHamster/print-no-message

Don't print full stack trace when there is no vorbis comment
This commit is contained in:
ByteHamster 2022-10-29 11:55:14 +02:00 committed by GitHub
commit fe2195f051
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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