summaryrefslogtreecommitdiff
path: root/plugins/authenticator/shotwell
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/authenticator/shotwell')
-rw-r--r--plugins/authenticator/shotwell/FlickrPublishingAuthenticator.vala2
-rw-r--r--plugins/authenticator/shotwell/GoogleAuthenticator.vala2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/authenticator/shotwell/FlickrPublishingAuthenticator.vala b/plugins/authenticator/shotwell/FlickrPublishingAuthenticator.vala
index 26af6d1..23de183 100644
--- a/plugins/authenticator/shotwell/FlickrPublishingAuthenticator.vala
+++ b/plugins/authenticator/shotwell/FlickrPublishingAuthenticator.vala
@@ -91,7 +91,7 @@ namespace Publishing.Authenticator.Shotwell.Flickr {
}
var response = "";
- var mins = new MemoryInputStream.from_data(response.data, null);
+ var mins = new MemoryInputStream.from_data(response.data);
request.finish(mins, -1, "text/plain");
}
}
diff --git a/plugins/authenticator/shotwell/GoogleAuthenticator.vala b/plugins/authenticator/shotwell/GoogleAuthenticator.vala
index 3276e67..9fc5b27 100644
--- a/plugins/authenticator/shotwell/GoogleAuthenticator.vala
+++ b/plugins/authenticator/shotwell/GoogleAuthenticator.vala
@@ -57,7 +57,7 @@ namespace Publishing.Authenticator.Shotwell.Google {
}
var response = "";
- var mins = new MemoryInputStream.from_data(response.data, null);
+ var mins = new MemoryInputStream.from_data(response.data);
request.finish(mins, -1, "text/plain");
}