Merge branch 'soru/fix-thumbnails' into 'main'
fix: Database does not store files correctly Closes #450 See merge request famedly/fluffychat!428
This commit is contained in:
commit
140ff324ee
1 changed files with 3 additions and 3 deletions
|
|
@ -50,7 +50,7 @@ class FlutterFamedlySdkHiveDatabase extends FamedlySdkHiveDatabase {
|
|||
} on MissingPluginException catch (_) {
|
||||
Logs().i('Hive encryption is not supported on this platform');
|
||||
}
|
||||
final db = FamedlySdkHiveDatabase(
|
||||
final db = FlutterFamedlySdkHiveDatabase(
|
||||
client.clientName,
|
||||
encryptionCipher: hiverCipher,
|
||||
);
|
||||
|
|
@ -78,7 +78,7 @@ class FlutterFamedlySdkHiveDatabase extends FamedlySdkHiveDatabase {
|
|||
Future<Uint8List> getFile(String mxcUri) async {
|
||||
if (!supportsFileStoring) return null;
|
||||
final tempDirectory = await _getFileStoreDirectory();
|
||||
final file = File('$tempDirectory/$mxcUri');
|
||||
final file = File('$tempDirectory/${Uri.encodeComponent(mxcUri)}');
|
||||
if (await file.exists() == false) return null;
|
||||
final bytes = await file.readAsBytes();
|
||||
return bytes;
|
||||
|
|
@ -88,7 +88,7 @@ class FlutterFamedlySdkHiveDatabase extends FamedlySdkHiveDatabase {
|
|||
Future storeFile(String mxcUri, Uint8List bytes, int time) async {
|
||||
if (!supportsFileStoring) return null;
|
||||
final tempDirectory = await _getFileStoreDirectory();
|
||||
final file = File('$tempDirectory/$mxcUri');
|
||||
final file = File('$tempDirectory/${Uri.encodeComponent(mxcUri)}');
|
||||
if (await file.exists()) return;
|
||||
await file.writeAsBytes(bytes);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue