File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Plugins/Flow.Launcher.Plugin.Program/Programs Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -59,8 +59,7 @@ private void InitializeAppInfo()
59
59
List < AppxPackageHelper . IAppxManifestApplication > _apps = AppxPackageHelper . GetAppsFromManifest ( stream ) ;
60
60
61
61
Apps = _apps . Select ( x => new Application ( x , this ) )
62
- . Where ( a => a . AppListEntry != "none"
63
- && ! string . IsNullOrEmpty ( a . UserModelId )
62
+ . Where ( a => ! string . IsNullOrEmpty ( a . UserModelId )
64
63
&& ! string . IsNullOrEmpty ( a . DisplayName ) )
65
64
. ToArray ( ) ;
66
65
}
@@ -278,7 +277,6 @@ public override int GetHashCode()
278
277
[ Serializable ]
279
278
public class Application : IProgram
280
279
{
281
- public string AppListEntry { get ; set ; }
282
280
public string UniqueIdentifier { get ; set ; }
283
281
public string DisplayName { get ; set ; }
284
282
public string Description { get ; set ; }
You can’t perform that action at this time.
0 commit comments