Merge branch 'master' of github.com:fourtf/chatterino2

This commit is contained in:
Rasmus Karlsson
2017-03-11 11:38:56 +01:00
23 changed files with 536 additions and 116 deletions
+2 -1
View File
@@ -10,6 +10,7 @@
#include "resources.h"
#include "settings.h"
#include <QObjectUserData>
#include <QStringList>
#include <ctime>
#include <list>
@@ -228,7 +229,7 @@ Message::Message(const IrcPrivateMessage &ircMessage, Channel &channel,
end > ircMessage.content().length())
continue;
QString name = ircMessage.content().mid(start, end - start);
QString name = ircMessage.content().mid(start, end - start + 1);
twitchEmotes.push_back(std::pair<long int, LazyLoadedImage *>(
start, Emotes::getTwitchEmoteById(name, id)));