File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
app/src/main/java/com/anthonyla/paperize/feature/wallpaper/wallpaper_service Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -71,16 +71,19 @@ class HomeWallpaperService: Service() {
71
71
if (intent != null ) {
72
72
when (intent.action) {
73
73
Actions .START .toString() -> {
74
+ Log .d(" PaperizeWallpaperChanger" , " Starting home start wallpaper service" )
74
75
homeInterval = intent.getIntExtra(" homeInterval" , SettingsConstants .WALLPAPER_CHANGE_INTERVAL_DEFAULT )
75
76
lockInterval = intent.getIntExtra(" lockInterval" , SettingsConstants .WALLPAPER_CHANGE_INTERVAL_DEFAULT )
76
77
scheduleSeparately = intent.getBooleanExtra(" scheduleSeparately" , false )
77
78
type = intent.getIntExtra(" type" , Type .SINGLE .ordinal)
78
79
workerTaskStart()
79
80
}
80
81
Actions .UPDATE .toString() -> {
82
+ Log .d(" PaperizeWallpaperChanger" , " Starting home update wallpaper service" )
81
83
workerTaskUpdate()
82
84
}
83
85
Actions .REFRESH .toString() -> {
86
+ Log .d(" PaperizeWallpaperChanger" , " Starting home refresh wallpaper service" )
84
87
workerTaskRefresh()
85
88
}
86
89
}
You can’t perform that action at this time.
0 commit comments