Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28a9a0ff authored by Roman Birg's avatar Roman Birg
Browse files

Settings: fix reversed name/id fields in metrics



Ref: CYNGNOS-471
Change-Id: Icfe5bf69b30afcddc1f23ae9ce1589e1c6ca2f6d
Signed-off-by: default avatarRoman Birg <roman@cyngn.com>
(cherry picked from commit 7631a862)
parent b46f7183
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -76,8 +76,8 @@ public class ReportingService extends IntentService {
        String deviceCarrierId = Utilities.getCarrierId(getApplicationContext());

        PersistableBundle cyanogenBundle = new PersistableBundle();
        cyanogenBundle.putString(StatsUploadJobService.KEY_DEVICE_NAME, deviceId);
        cyanogenBundle.putString(StatsUploadJobService.KEY_UNIQUE_ID, deviceName);
        cyanogenBundle.putString(StatsUploadJobService.KEY_DEVICE_NAME, deviceName);
        cyanogenBundle.putString(StatsUploadJobService.KEY_UNIQUE_ID, deviceId);
        cyanogenBundle.putString(StatsUploadJobService.KEY_VERSION, deviceVersion);
        cyanogenBundle.putString(StatsUploadJobService.KEY_COUNTRY, deviceCountry);
        cyanogenBundle.putString(StatsUploadJobService.KEY_CARRIER, deviceCarrier);