Skip to content

Commit

Permalink
fix: prevent unsupported operation exception (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
ponces authored Jul 14, 2023
1 parent c5b0621 commit a879ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/services/root_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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"',
Expand Down

0 comments on commit a879ac3

Please sign in to comment.