mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-03-03 12:16:47 +00:00
fixes issue on android
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
This commit is contained in:
parent
87ddb8ebdb
commit
609c7abb55
3 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.0.95
|
## 0.0.96
|
||||||
|
|
||||||
Feature: Show link in chat if the saved media file contains one
|
Feature: Show link in chat if the saved media file contains one
|
||||||
Improve: Verification badge for groups
|
Improve: Verification badge for groups
|
||||||
|
|
|
||||||
|
|
@ -97,9 +97,9 @@ Future<void> compressAndOverlayVideo(MediaFileService media) async {
|
||||||
if (mediaInfo == null) {
|
if (mediaInfo == null) {
|
||||||
Log.error('Could not compress video using original video.');
|
Log.error('Could not compress video using original video.');
|
||||||
// as a fall back use the non compressed version
|
// as a fall back use the non compressed version
|
||||||
media.ffmpegOutputPath.renameSync(media.tempPath.path);
|
media.ffmpegOutputPath.copySync(media.tempPath.path);
|
||||||
} else {
|
} else {
|
||||||
mediaInfo.file!.renameSync(media.tempPath.path);
|
mediaInfo.file!.copySync(media.tempPath.path);
|
||||||
}
|
}
|
||||||
|
|
||||||
stopwatch.stop();
|
stopwatch.stop();
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ description: "twonly, a privacy-friendly way to connect with friends through sec
|
||||||
|
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.0.95+95
|
version: 0.0.96+96
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.6.0
|
sdk: ^3.6.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue