diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-25 00:04:29 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-25 00:18:08 -0500 |
commit | 092cd3291b3123cd137eaf22bd0422395255585c (patch) | |
tree | bcb1091379bfb3101bc649738babcab40a043fe1 /windows | |
parent | 3923acd0dd7adef1710bfa039eb22454d9d551dd (diff) | |
download | abaddon-portaudio-092cd3291b3123cd137eaf22bd0422395255585c.tar.gz abaddon-portaudio-092cd3291b3123cd137eaf22bd0422395255585c.zip |
fix build
Diffstat (limited to 'windows')
-rw-r--r-- | windows/guildsettings/auditlogpane.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/guildsettings/auditlogpane.cpp b/windows/guildsettings/auditlogpane.cpp index 4637838..e5b45fe 100644 --- a/windows/guildsettings/auditlogpane.cpp +++ b/windows/guildsettings/auditlogpane.cpp @@ -266,7 +266,7 @@ void GuildSettingsAuditLogPane::OnAuditLogFetch(const AuditLogData &data) { const auto role = discord.GetRole(entry.TargetID); markup = "<b>" + user.GetEscapedString() + "</b> " + "updated the role <b>" + - (role.has_value() ? Glib::Markup::escape_text(role->Name) : entry.TargetID) + + (role.has_value() ? Glib::Markup::escape_text(role->Name) : Glib::ustring(entry.TargetID)) + "</b>"; if (entry.Changes.has_value()) for (const auto &change : *entry.Changes) { |