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

Commit 1ef48140 authored by Kunhung Li's avatar Kunhung Li
Browse files

Correct wallpaper preview logging

- Wallpaper "preview" and "apply" logging are called by
logIndividualWallpaperSelected() and logWallpaperSet() separately.
Its collectionId should be aligned at the same parameter.

- Correct parameter position in logIndividualWallpaperSelected().

Bug: 149462912
Test: Manual
Change-Id: I3c1737295c80f81e95eeddc4547a221f2d11ff20
parent 3f8bd8c4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -60,8 +60,8 @@ public class StatsLogUserEventLogger extends NoOpUserEventLogger implements Them

    @Override
    public void logIndividualWallpaperSelected(String collectionId) {
        SysUiStatsLog.write(STYLE_UI_CHANGED, StyleEnums.WALLPAPER_SELECT, 0, 0, 0, 0, 0, 0,
                collectionId.hashCode(), 0, 0);
        SysUiStatsLog.write(STYLE_UI_CHANGED, StyleEnums.WALLPAPER_SELECT, 0, 0, 0, 0, 0,
                collectionId.hashCode(), 0, 0, 0);
    }

    @Override