Merge branch 'master' of https://github.com/maltejur/discord-screenaudio
This commit is contained in:
commit
9cbdca0441
|
@ -264,7 +264,7 @@ void DiscordPage::javaScriptConsoleMessage(
|
|||
auto lines = segment.split("\n");
|
||||
QString ansi;
|
||||
uint endOfStyles = lines.length();
|
||||
for (size_t line = 1; line < lines.length(); line++) {
|
||||
for (auto line = 1; line < lines.length(); line++) {
|
||||
if (!lines[line].endsWith(";")) {
|
||||
endOfStyles = line;
|
||||
break;
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#include <QDebug>
|
||||
#include <QFile>
|
||||
#include <QInputDialog>
|
||||
#include <QMessageBox>
|
||||
#include <QStandardPaths>
|
||||
#include <QTimer>
|
||||
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
|
||||
#ifdef KNOTIFICATIONS
|
||||
#include <KNotification>
|
||||
#include <KJob>
|
||||
#endif
|
||||
|
||||
#include <KJob>
|
||||
|
||||
class UserScript : public QObject {
|
||||
Q_OBJECT
|
||||
|
|
Loading…
Reference in New Issue