Skip to content

Commit

Permalink
Refactor setAppBundleId
Browse files Browse the repository at this point in the history
  • Loading branch information
starbugs committed Mar 25, 2024
1 parent 25b3d8f commit 6c76bd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WakaTime/Views/MonitoredAppsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MonitoredAppsView: NSView, NSOutlineViewDataSource, NSOutlineViewDelegate
let setAppBundleId = bundleId.appending("-setapp")
if let icon = AppInfo.getIcon(bundleId: setAppBundleId),
let name = AppInfo.getAppName(bundleId: setAppBundleId) {
apps.append(AppData(bundleId: bundleId.appending("-setapp"), icon: icon, name: name, tag: index))
apps.append(AppData(bundleId: setAppBundleId, icon: icon, name: name, tag: index))
index += 1
}
}
Expand Down

0 comments on commit 6c76bd4

Please sign in to comment.