chore: fix video follow up

This commit is contained in:
Christian Pauly 2021-12-27 17:59:45 +01:00
parent 5e0002fbb8
commit f522c81834
1 changed files with 3 additions and 3 deletions

View File

@ -21,8 +21,8 @@ extension ResizeImage on MatrixFile {
Future<MatrixVideoFile> resizeVideo() async {
final tmpDir = await getTemporaryDirectory();
final tmpFile = File(tmpDir.path + name);
final compressedFile = File(tmpDir.path + 'compressed_' + name);
final tmpFile = File(tmpDir.path + '/' + name);
final compressedFile = File(tmpDir.path + '/compressed_' + name);
MediaInfo? mediaInfo;
await tmpFile.writeAsBytes(bytes);
try {
@ -43,7 +43,7 @@ extension ResizeImage on MatrixFile {
Future<MatrixImageFile?> getVideoThumbnail() async {
if (!PlatformInfos.isMobile) return null;
final tmpDir = await getTemporaryDirectory();
final tmpFile = File(tmpDir.path + name);
final tmpFile = File(tmpDir.path + '/' + name);
if (await tmpFile.exists() == false) {
await tmpFile.writeAsBytes(bytes);
}