Instant Video Playback UI

This commit is contained in:
Nicholas
2023-09-21 15:12:11 -04:00
committed by GitHub
parent f8cb26ca74
commit f8283acfae
25 changed files with 860 additions and 403 deletions

View File

@@ -172,7 +172,11 @@ public abstract class Attachment {
@Nullable
public byte[] getIncrementalDigest() {
return incrementalDigest;
if (incrementalDigest != null && incrementalDigest.length > 0) {
return incrementalDigest;
} else {
return null;
}
}
@Nullable