Fix logic error releasing wakelock.
This commit is contained in:
		
							parent
							
								
									9dacf8b68e
								
							
						
					
					
						commit
						8b396f3bba
					
				
					 1 changed files with 7 additions and 4 deletions
				
			
		|  | @ -219,14 +219,17 @@ class TrackerService: Service() | |||
|             location_interval = Keys.LOCATION_INTERVAL_DEAD | ||||
|         } | ||||
| 
 | ||||
|         if ( | ||||
|         val should_wakelock = ( | ||||
|             (gpsLocationListenerRegistered || networkLocationListenerRegistered) && | ||||
|             trackingState == Keys.STATE_TRACKING_ACTIVE && | ||||
|             interval == Keys.LOCATION_INTERVAL_FULL_POWER && | ||||
|             !wakelock.isHeld | ||||
|             interval == Keys.LOCATION_INTERVAL_FULL_POWER | ||||
|         ) | ||||
|         if (should_wakelock) | ||||
|         { | ||||
|             wakelock.acquire() | ||||
|             if (! wakelock.isHeld) | ||||
|             { | ||||
|                 wakelock.acquire() | ||||
|             } | ||||
|         } | ||||
|         else if (wakelock.isHeld) | ||||
|         { | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue