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

Commit 84eb0201 authored by Santiago Etchebehere's avatar Santiago Etchebehere
Browse files

Add missing wallpaper id hash

Bug: 123356136
Change-Id: I6b157aa1ecf5d313b0cc03fa69a01a5d23120371
parent 81116ae5
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -53,8 +53,8 @@ public class StatsLogUserEventLogger extends NoOpUserEventLogger implements Them

    @Override
    public void logActionClicked(String collectionId, int actionLabelResId) {
        WallpaperStatsLog.write(CODE, StyleEnums.WALLPAPER_EXPLORE, 0, 0, 0, 0, 0, collectionId.hashCode(),
                0, 0, 0);
        WallpaperStatsLog.write(CODE, StyleEnums.WALLPAPER_EXPLORE, 0, 0, 0, 0, 0,
                collectionId.hashCode(), 0, 0, 0);
    }

    @Override
@@ -76,7 +76,8 @@ public class StatsLogUserEventLogger extends NoOpUserEventLogger implements Them
        WallpaperStatsLog.write(CODE, StyleEnums.WALLPAPER_APPLIED,
                0, 0, 0, 0, 0,
                collectionId.hashCode(),
                0, 0, 0);
                wallpaperId != null ? wallpaperId.hashCode() : 0,
                0, 0);
    }

    @Nullable