1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-20 12:00:51 +02:00

Avoid potential NPE

This commit is contained in:
cpfeiffer 2017-11-03 22:01:11 +01:00
parent 83c06f4429
commit 23b18abfe8

View File

@ -42,6 +42,9 @@ public abstract class AbstractGBActivity extends AppCompatActivity implements GB
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (action == null) {
return;
}
switch (action) {
case GBApplication.ACTION_LANGUAGE_CHANGE:
setLanguage(GBApplication.getLanguage(), true);