From 9554049caa09869e4396f305eff5ad0e3308af52 Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Sat, 12 Apr 2014 11:20:06 +0300 Subject: [PATCH] Bug #70173: Adding clipboard uri scheme as exception in fts indexer --- extensions/fts++/indexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/fts++/indexer.cpp b/extensions/fts++/indexer.cpp index 630af1f..ed4dd67 100644 --- a/extensions/fts++/indexer.cpp +++ b/extensions/fts++/indexer.cpp @@ -130,7 +130,7 @@ void Indexer::Initialize (GError **error) /* we need to be careful with what we log, for example ubuntuone logs its * weird uids and that screws up the index */ this->uri_schemes_regex = g_regex_new ( - "(file|http[s]?|[s]?ftp|ssh|smb|dav[s]?|application)$", G_REGEX_OPTIMIZE, + "(file|http[s]?|[s]?ftp|ssh|smb|dav[s]?|application|clipboard)$", G_REGEX_OPTIMIZE, (GRegexMatchFlags) 0, &error); if (error) -- 1.8.3.2