|
|
|
@ -530,8 +530,7 @@ public class MicroPhotoService extends Service {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Register Next Photo Timer
|
|
|
|
|
Date date = new Date();
|
|
|
|
|
long startTime = (date.getTime() + 999) / 1000 + 1; // Add one second
|
|
|
|
|
long startTime = (ts == 0) ? (((new Date()).getTime() + 999) / 1000 + 1) : (ts + 1); // Add one second
|
|
|
|
|
mService.updateCaptureSchedule(startTime);
|
|
|
|
|
} else if (TextUtils.equals(ACTION_HEARTBEAT_MANUALLY, action)) {
|
|
|
|
|
Log.i(TAG, "HB Timer Fired ACTION=" + action);
|
|
|
|
|