Skip to content

Commit f52b8f9

Browse files
authored
Merge pull request #668 from ThomasRitaine/main
fix(privacy-indicator): resolve QML crash from undeclared appName variable
2 parents 4e6dde8 + e54f2a5 commit f52b8f9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

privacy-indicator/Main.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Item {
5757

5858
var appNames = [];
5959
for (var i = 0; i < apps.length; i++) {
60-
appName = apps[i];
60+
var appName = apps[i];
6161
if (filterRegex && appName && filterRegex.test(appName)) continue;
6262
if (appName && appNames.indexOf(appName) === -1) appNames.push(appName);
6363
}

privacy-indicator/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "privacy-indicator",
33
"name": "Privacy Indicator",
4-
"version": "1.2.9",
4+
"version": "1.2.10",
55
"minNoctaliaVersion": "3.6.0",
66
"author": "Noctalia Team",
77
"official": true,

0 commit comments

Comments
 (0)