about summary refs log tree commit diff stats
path: root/lib/UnsplashSource.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/UnsplashSource.pm')
-rw-r--r--lib/UnsplashSource.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/UnsplashSource.pm b/lib/UnsplashSource.pm
index c41960e..bcce966 100644
--- a/lib/UnsplashSource.pm
+++ b/lib/UnsplashSource.pm
@@ -8,7 +8,6 @@ use warnings;
 use URI;
 use HTTP::Tiny;
 use Carp qw( croak carp );
-use URI::Encode qw( uri_encode );
 
 my $api = "https://source.unsplash.com";
 my $http = HTTP::Tiny->new(
@@ -52,7 +51,7 @@ sub random_search {
     push @segments, $options{resolution};
     $url->path_segments( @segments );
 
-    $url->query_keywords( uri_encode(join(',', @{$options{search}})) );
+    $url->query_keywords( join(',', @{$options{search}}) );
 
     return $http->head($url);
 }
@@ -93,7 +92,7 @@ sub fixed {
     push @segments, "weekly" if $options{weekly};
     $url->path_segments( @segments );
 
-    $url->query_keywords( uri_encode(join(',', @{$options{search}})) );
+    $url->query_keywords( join(',', @{$options{search}}) );
 
     return $http->head($url);
 }