diff --git a/src/neochatroommember.cpp b/src/neochatroommember.cpp index 4c822a979..0b654af76 100644 --- a/src/neochatroommember.cpp +++ b/src/neochatroommember.cpp @@ -153,15 +153,6 @@ QColor NeochatRoomMember::color() const return m_room->member(m_memberId).color(); } -QString NeochatRoomMember::avatarMediaId() const -{ - if (m_room == nullptr || m_memberId.isEmpty()) { - return {}; - } - - return m_room->member(m_memberId).avatarMediaId(); -} - QUrl NeochatRoomMember::avatarUrl() const { if (m_room == nullptr || m_memberId.isEmpty()) { diff --git a/src/neochatroommember.h b/src/neochatroommember.h index afb34a83a..ab3c8ff61 100644 --- a/src/neochatroommember.h +++ b/src/neochatroommember.h @@ -70,7 +70,6 @@ public: int hue() const; qreal hueF() const; QColor color() const; - QString avatarMediaId() const; QUrl avatarUrl() const; Q_SIGNALS: