tweak createForExternal

This commit is contained in:
adbenitez
2025-12-22 18:23:08 +01:00
parent 99c848b1b7
commit 98d711e0ca
@@ -122,8 +122,7 @@ public class PersistentBlobProvider {
}
public Uri createForExternal(@NonNull Context context, @NonNull String mimeType) throws IOException, IllegalStateException, NullPointerException {
long timestamp = System.currentTimeMillis();
String filename = timestamp + "." + getExtensionFromMimeType(mimeType);
String filename = System.currentTimeMillis() + "." + getExtensionFromMimeType(mimeType);
// Try external cache first
try {