[android]: Fix an unintentional change in the previous commit

Sorry for that.

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2021-04-10 17:44:27 +03:00
parent 880ae66c90
commit 7e2dbf1045

View file

@ -34,7 +34,7 @@ public class NotificationService extends JobIntentService
final Intent intent = new Intent(context, NotificationService.class)
.setAction(CONNECTIVITY_ACTION);
int id = JobIdMap.getId(NotificationService.class.hashCode();
int id = JobIdMap.getId(NotificationService.class);
JobIntentService.enqueueWork(context, NotificationService.class, id, intent);
}