summaryrefslogtreecommitdiff
path: root/graphics/f-spot/patches/patch-FlickrRemote.cs
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/f-spot/patches/patch-FlickrRemote.cs')
-rw-r--r--graphics/f-spot/patches/patch-FlickrRemote.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/f-spot/patches/patch-FlickrRemote.cs b/graphics/f-spot/patches/patch-FlickrRemote.cs
index 56567dd09a3..e629aa66c98 100644
--- a/graphics/f-spot/patches/patch-FlickrRemote.cs
+++ b/graphics/f-spot/patches/patch-FlickrRemote.cs
@@ -1,4 +1,4 @@
-$NetBSD: patch-FlickrRemote.cs,v 1.1 2015/05/23 10:33:01 kefren Exp $
+$NetBSD: patch-FlickrRemote.cs,v 1.2 2015/05/24 06:50:14 kefren Exp $
Make it compile with newer flickrnet
@@ -44,7 +44,7 @@ Make it compile with newer flickrnet
public ArrayList Search (string[] tags, int licenseId)
{
-+ var options = new PhotoSearchOptions { Tags = tags.Aggregate((a, b) => a += b + " ") };
++ var options = new PhotoSearchOptions { Tags = tags.Aggregate((a, b) => a + " " + b) };
ArrayList photos_url = new ArrayList ();
// Photos photos = flickr.PhotosSearchText (tags, licenseId);
- Photos photos = flickr.PhotosSearch (tags);