mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2025-01-21 16:47:31 +01:00
Fix array positions
This commit is contained in:
parent
f1d530e1b5
commit
1bc6b82a27
@ -42,14 +42,14 @@ data class GcmPrefs(
|
|||||||
GcmPrefs(
|
GcmPrefs(
|
||||||
isGcmLogEnabled = c.getInt(0) != 0,
|
isGcmLogEnabled = c.getInt(0) != 0,
|
||||||
lastPersistedId = c.getString(1),
|
lastPersistedId = c.getString(1),
|
||||||
gcmEnabled = c.getInt(3) != 0,
|
gcmEnabled = c.getInt(2) != 0,
|
||||||
networkMobile = c.getInt(4),
|
networkMobile = c.getInt(3),
|
||||||
networkWifi = c.getInt(5),
|
networkWifi = c.getInt(4),
|
||||||
networkRoaming = c.getInt(6),
|
networkRoaming = c.getInt(5),
|
||||||
networkOther = c.getInt(7),
|
networkOther = c.getInt(6),
|
||||||
learntMobileInterval = c.getInt(8),
|
learntMobileInterval = c.getInt(7),
|
||||||
learntWifiInterval = c.getInt(9),
|
learntWifiInterval = c.getInt(8),
|
||||||
learntOtherInterval = c.getInt(10),
|
learntOtherInterval = c.getInt(9),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user