diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-25 19:54:17 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-25 19:54:17 +0900 |
commit | 2f83e4be20a15013181c1ba6944e21f051ccac9d (patch) | |
tree | b6d1014f736b8c75e05e1dea8157e7ed04cc7820 /avatar.cpp | |
parent | d45298d5db97663f300879002a8e0ccdf6b8d523 (diff) | |
parent | 80f7e44e1a9056fc55147718dd2812eb93925ec1 (diff) | |
download | libquotient-2f83e4be20a15013181c1ba6944e21f051ccac9d.tar.gz libquotient-2f83e4be20a15013181c1ba6944e21f051ccac9d.zip |
Merge branch 'kitsune-avatar-url-properties'
Diffstat (limited to 'avatar.cpp')
-rw-r--r-- | avatar.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -62,6 +62,11 @@ QImage Avatar::get(int width, int height, notifier_t notifier) const return d->get({width, height}, notifier); } +QString Avatar::mediaId() const +{ + return d->_url.authority() + d->_url.path(); +} + QImage Avatar::Private::get(QSize size, Avatar::notifier_t notifier) const { // FIXME: Alternating between longer-width and longer-height requests |