// SPDX-FileCopyrightText: 2019 Kitsune Ral // SPDX-License-Identifier: LGPL-2.1-or-later #include "roomtombstoneevent.h" using namespace Quotient; QString RoomTombstoneEvent::serverMessage() const { return fromJson(contentJson()["body"_ls]); } QString RoomTombstoneEvent::successorRoomId() const { return fromJson(contentJson()["replacement_room"_ls]); }