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

Commit 8f1eea8f authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Migrate from android::String isEmpty to empty" into main am: 8a218307

parents 0e9c13a8 8a218307
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ String8 sessionIdToString(const std::vector<uint8_t>& sessionId) {
    for (auto it = sessionId.begin(); it != sessionId.end(); it++) {
        result.appendFormat("%02x ", *it);
    }
    if (result.isEmpty()) {
    if (result.empty()) {
        result.append("(null)");
    }
    return result;