diff options
author | Bastien Nocera <hadess@hadess.net> | 2020-08-21 20:47:06 +0200 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2020-08-21 20:48:32 +0200 |
commit | 0ed1d793feade5f9e8a28a82f1fe1e00456f3b37 (patch) | |
tree | 28365f9a40fc320f0efb8dbb60993047d098ba8d | |
parent | f672175701ad4b8320a771854ad6364f51fe6570 (diff) | |
download | totem-0ed1d793feade5f9e8a28a82f1fe1e00456f3b37.tar.gz |
grilo: Don't listen to tracker3 content changes
They don't work well enough for now. See:
https://gitlab.gnome.org/GNOME/grilo-plugins/-/issues/73
-rw-r--r-- | src/totem-grilo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/totem-grilo.c b/src/totem-grilo.c index 279a4683b..dfe1b42d6 100644 --- a/src/totem-grilo.c +++ b/src/totem-grilo.c @@ -1330,6 +1330,9 @@ source_added_cb (GrlRegistry *registry, if (source_is_recent (source)) { browse (self, self->priv->recent_model, NULL, source, NULL, -1); + /* https://gitlab.gnome.org/GNOME/grilo-plugins/-/issues/73 */ + if (g_str_equal (id, "grl-tracker3-source") == FALSE) + monitor = TRUE; } else if (!source_is_browse_blocked (source)) { const GdkPixbuf *icon; |