Allow users to override author name (#1792)

This commit is contained in:
Imran Remtulla
2025-02-22 20:01:59 -05:00
parent 9a58643088
commit b3af899ba1
4 changed files with 18 additions and 7 deletions

View File

@@ -53,6 +53,7 @@ class AppInMemory {
AppInMemory(app.deepCopy(), downloadProgress, installedInfo, icon);
String get name => app.overrideName ?? app.finalName;
String get author => app.overrideAuthor ?? app.finalAuthor;
}
class DownloadedApk {