Skip to content
Snippets Groups Projects
Commit ccd11a23 authored by Francesco Andreuzzi's avatar Francesco Andreuzzi
Browse files

fixed crash-on-boot

parent 7c776783
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,12 @@ public class AppsManager {
map.remove(entry.getKey());
}
} else {
map.get(entry.getKey()).launchedTimes = (Integer) entry.getValue();
AppInfo info = map.get(entry.getKey());
if(info == null) {
continue;
} else {
info.launchedTimes = (Integer) entry.getValue();
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment