aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-04-13 09:09:30 +0200
committerdec05eba <dec05eba@protonmail.com>2021-04-14 15:00:12 +0200
commit4db0876f45533d3b55ee79df2d2bc78b789b5a28 (patch)
tree41f513c10462ba219c1df0481b221b97f016ea45 /plugins
parentfc632e90d793babc47044ff87ab63a86211e0bd0 (diff)
Make search fuzzy, fix soundcloud next song when hitting user
Also some other misc changes
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Soundcloud.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Soundcloud.hpp b/plugins/Soundcloud.hpp
index 0d73d36..e04d409 100644
--- a/plugins/Soundcloud.hpp
+++ b/plugins/Soundcloud.hpp
@@ -52,7 +52,7 @@ namespace QuickMedia {
std::unique_ptr<LazyFetchPage> create_channels_page(Program *, const std::string &) override { return nullptr; }
std::string get_url() override { return url; }
std::string url_get_playable_url(const std::string &url) override;
- bool video_should_be_skipped(const std::string &url) override { return url == "track"; }
+ bool video_should_be_skipped(const std::string &url) override { return url == "track" || url.find("/stream/users/") != std::string::npos; }
private:
std::string url;
};