1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-09-07 23:16:09 +02:00

Sony SWR12: Fix broken support

The wasp-os commit was missing a break :/
This commit is contained in:
Andreas Shimokawa 2021-03-03 18:27:03 +01:00
parent 47d211013c
commit 1959f1c579

View File

@ -330,6 +330,7 @@ public class DeviceSupportFactory {
break;
case SONY_SWR12:
deviceSupport = new ServiceDeviceSupport(new SonySWR12DeviceSupport(), EnumSet.of(ServiceDeviceSupport.Flags.BUSY_CHECKING));
break;
case WASPOS:
deviceSupport = new ServiceDeviceSupport(new WaspOSDeviceSupport(), EnumSet.of(ServiceDeviceSupport.Flags.BUSY_CHECKING));
break;