mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: prevent unsupported operation
exception (#1018)
This commit is contained in:
parent
c5b0621323
commit
a879ac30fb
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ class RootAPI {
|
|||
}
|
||||
|
||||
Future<List<String>> getInstalledApps() async {
|
||||
final List<String> apps = List.empty();
|
||||
final List<String> apps = List.empty(growable: true);
|
||||
try {
|
||||
String? res = await Root.exec(
|
||||
cmd: 'ls "$_revancedDirPath"',
|
||||
|
|
Loading…
Reference in a new issue