mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
Fix avatar url conversion for widgets
This commit is contained in:
parent
7b00411dc4
commit
1dacf327e1
3 changed files with 3 additions and 3 deletions
|
@ -402,7 +402,7 @@ if(USE_BUNDLED_MTXCLIENT)
|
|||
FetchContent_Declare(
|
||||
MatrixClient
|
||||
GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git
|
||||
GIT_TAG 29b46c872576d88797178d3c147e8b12b1ac8693
|
||||
GIT_TAG 8c03d9ac58274695a71d0eb32519ebce29bc536e
|
||||
)
|
||||
set(BUILD_LIB_EXAMPLES OFF CACHE INTERNAL "")
|
||||
set(BUILD_LIB_TESTS OFF CACHE INTERNAL "")
|
||||
|
|
|
@ -191,7 +191,7 @@ modules:
|
|||
buildsystem: cmake-ninja
|
||||
name: mtxclient
|
||||
sources:
|
||||
- commit: 29b46c872576d88797178d3c147e8b12b1ac8693
|
||||
- commit: 8c03d9ac58274695a71d0eb32519ebce29bc536e
|
||||
#tag: v0.6.1
|
||||
type: git
|
||||
url: https://github.com/Nheko-Reborn/mtxclient.git
|
||||
|
|
|
@ -2248,7 +2248,7 @@ TimelineModel::widgetLinks() const
|
|||
QStringList list;
|
||||
|
||||
auto user = utils::localUser();
|
||||
auto av = QUrl::toPercentEncoding(avatarUrl(user));
|
||||
auto av = QUrl::toPercentEncoding(QString::fromStdString(http::client()->mxc_to_download_url(avatarUrl(user).toStdString())));
|
||||
auto disp = QUrl::toPercentEncoding(displayName(user));
|
||||
auto theme = UserSettings::instance()->theme();
|
||||
if (theme == QStringLiteral("system"))
|
||||
|
|
Loading…
Reference in a new issue