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

Commit 0bdf1b74 authored by Varun Shah's avatar Varun Shah
Browse files

Fix parser bug ignoring user id.

Bug: 302067720
Change-Id: I98e180fbd36344ddc949ecd679c42ff55faf7589
Test: manual
parent 78dca6fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1845,7 +1845,7 @@ public class SyncStorageEngine {
    private void parseListenForTickles(TypedXmlPullParser parser) {
        int userId = 0;
        try {
            parser.getAttributeInt(null, XML_ATTR_USER);
            userId = parser.getAttributeInt(null, XML_ATTR_USER);
        } catch (XmlPullParserException e) {
            Slog.e(TAG, "error parsing the user for listen-for-tickles", e);
        }