aboutsummaryrefslogtreecommitdiff
path: root/src/QuickMedia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/QuickMedia.cpp')
-rw-r--r--src/QuickMedia.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp
index 899ff71..755b5b2 100644
--- a/src/QuickMedia.cpp
+++ b/src/QuickMedia.cpp
@@ -8,7 +8,6 @@
#include "../plugins/Fourchan.hpp"
#include "../plugins/NyaaSi.hpp"
#include "../plugins/Matrix.hpp"
-#include "../plugins/Pleroma.hpp"
#include "../plugins/Spotify.hpp"
#include "../plugins/Soundcloud.hpp"
#include "../plugins/FileManager.hpp"
@@ -77,8 +76,6 @@ static const std::pair<const char*, const char*> valid_plugins[] = {
std::make_pair("4chan", "4chan_logo.png"),
std::make_pair("nyaa.si", "nyaa_si_logo.png"),
std::make_pair("matrix", "matrix_logo.png"),
- std::make_pair("mastodon", "pleroma_logo.png"),
- std::make_pair("pleroma", "pleroma_logo.png"),
std::make_pair("file-manager", nullptr),
std::make_pair("stdin", nullptr),
std::make_pair("saucenao", nullptr),
@@ -1135,9 +1132,6 @@ namespace QuickMedia {
} else if(strcmp(plugin_name, "soundcloud") == 0) {
tabs.push_back(Tab{create_body(), std::make_unique<SoundcloudSearchPage>(this), create_search_bar("Search...", 500)});
no_video = true;
- } else if(strcmp(plugin_name, "mastodon") == 0 || strcmp(plugin_name, "pleroma") == 0) {
- auto pleroma = std::make_shared<Pleroma>();
- tabs.push_back(Tab{create_body(), std::make_unique<PleromaHomePage>(this, pleroma), create_search_bar("Search...", 350)});
} else if(strcmp(plugin_name, "matrix") == 0) {
assert(!matrix);
matrix = new Matrix();