aboutsummaryrefslogtreecommitdiffstats
path: root/src/activitypub/apattachment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/activitypub/apattachment.cpp')
-rw-r--r--src/activitypub/apattachment.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/activitypub/apattachment.cpp b/src/activitypub/apattachment.cpp
index 342ea21..b5c82ce 100644
--- a/src/activitypub/apattachment.cpp
+++ b/src/activitypub/apattachment.cpp
@@ -11,7 +11,7 @@ APAttachment::APAttachment(APAttachmentFields fields) {
}
QString APAttachment::get_html_render(HtmlRenderDetails info) {
- QString html(get_html_template("apattachment"));
+ QString html(get_html_template(QStringLiteral("apattachment")));
if (not path_url.isEmpty()) {
html.replace("{{path}}", path_url);
@@ -59,7 +59,7 @@ QString APAttachmentList::get_html_render(HtmlRenderDetails render_info) {
int i = 1;
for (APAttachment attachment : *this) {
- QString item_html(get_html_template("apattachmentlist_item"));
+ QString item_html(get_html_template(QStringLiteral("apattachmentlist_item")));
item_html.replace("{{id}}", QString::number(i));
item_html.replace("{{attachment}}", attachment.get_html_render(render_info));