BonzaiThePenguin/Loading

System processes stop showing up after about a day

Closed this issue · 3 comments

Someone just brought this to my attention via email – if you've been running Loading for a while without restarting, you might not have any System processes listed anymore. I certainly don't, and it's strange since they're very common when the app first launches. Need to look into this one further.

I relaunched the app and the System processes are back as normal. Definitely something wrong there.

Looking into it now, it might just be because of this:

if (!app_used) [apps removeObject:app];

It should probably make sure it isn't the System app:

if (!app_used && ![app.path isEqualToString:@"System"]) [apps removeObject:app];