We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d911fab commit 40bd65aCopy full SHA for 40bd65a
1 file changed
lib/core/binary_manager.dart
@@ -3,6 +3,7 @@ import 'package:flutter/foundation.dart';
3
import 'package:path/path.dart' as p;
4
5
const bool _kFlatpak = bool.fromEnvironment('FLATPAK');
6
+
7
class BinaryManager {
8
BinaryManager._();
9
static final BinaryManager instance = BinaryManager._();
@@ -27,7 +28,7 @@ class BinaryManager {
27
28
void _initDesktop({bool isPortable = false}) {
29
if (_kFlatpak) {
30
_ffmpegPath = 'ffmpeg';
- _ytDlpPath = '/app/bin/bin/yt-dlp';
31
+ _ytDlpPath = '/app/lib/yt-dlp';
32
return;
33
}
34
0 commit comments