Fix parceling GBDeviceCandidate

here
cpfeiffer 2017-01-26 00:06:11 +01:00
parent 4c26c2933b
commit b8b2d8830f
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class GBDeviceCandidate implements Parcelable {
dest.writeParcelable(device, 0);
dest.writeInt(rssi);
dest.writeString(deviceType.name());
dest.writeArray(serviceUuds);
dest.writeParcelableArray(serviceUuds, 0);
}
public static final Creator<GBDeviceCandidate> CREATOR = new Creator<GBDeviceCandidate>() {