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

add state string for INITIALIZED

This commit is contained in:
cpfeiffer 2015-04-19 15:21:15 +02:00
parent 2b1157ca67
commit 7b433f0d18

View File

@ -60,6 +60,8 @@ public class GBDevice {
return "connecting";
case CONNECTED:
return "connected";
case INITIALIZED:
return "initialized";
}
return "unknown state";
}