Merge pull request #1280 from Xefir/fix-npe-wallpaper-service
Fix NPE on Wallpaper Service
This commit is contained in:
commit
895947578e
|
@ -115,10 +115,12 @@ public class NyanWallpaperService extends WallpaperService implements NyanConsta
|
|||
|
||||
private void updateHelperState() {
|
||||
final PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
|
||||
if (pm.isScreenOn()) {
|
||||
mHelper.start();
|
||||
} else {
|
||||
mHelper.stop();
|
||||
if (pm != null) {
|
||||
if (pm.isScreenOn()) {
|
||||
mHelper.start();
|
||||
} else {
|
||||
mHelper.stop();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue