File tree 2 files changed +5
-0
lines changed
java/org/thoughtcrime/securesms/service
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1235
1235
<receiver android : name =" .service.BootReceiver" android : exported =" false" >
1236
1236
<intent-filter >
1237
1237
<action android : name =" android.intent.action.BOOT_COMPLETED" />
1238
+ <action android : name =" android.intent.action.MY_PACKAGE_REPLACED" />
1238
1239
</intent-filter >
1239
1240
</receiver >
1240
1241
Original file line number Diff line number Diff line change 3
3
import android .content .Context ;
4
4
import android .content .Intent ;
5
5
6
+ import org .signal .core .util .logging .Log ;
6
7
import org .thoughtcrime .securesms .dependencies .AppDependencies ;
7
8
import org .thoughtcrime .securesms .jobs .MessageFetchJob ;
8
9
9
10
public class BootReceiver extends ExportedBroadcastReceiver {
10
11
12
+ private static final String TAG = Log .tag (BootReceiver .class );
13
+
11
14
@ Override
12
15
public void onReceiveUnlock (Context context , Intent intent ) {
16
+ Log .i (TAG , "Restarting after: " + intent .getAction ());
13
17
AppDependencies .getJobManager ().add (new MessageFetchJob ());
14
18
}
15
19
}
You can’t perform that action at this time.
0 commit comments