diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-08-12 10:07:55 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-08-12 10:07:55 +0200 |
commit | 2333d2b06d52754a55a747fa438844286f98d53a (patch) | |
tree | e46351c8ec622c9d13232cf00c8a1048e55184af /plugins/authenticator | |
parent | 7f667adb7b8d3a803a6cd6120dcea4ba4ff89075 (diff) | |
parent | d0aaad443a88968dc61172c050084d3d9faa7602 (diff) |
Update upstream source from tag 'upstream/0.32.2'
Update to upstream version '0.32.2'
with Debian dir f0c4eb48b3e5ba2a80bbd45ac2effe5ecd515530
Diffstat (limited to 'plugins/authenticator')
-rw-r--r-- | plugins/authenticator/shotwell/FlickrPublishingAuthenticator.vala | 2 | ||||
-rw-r--r-- | plugins/authenticator/shotwell/GoogleAuthenticator.vala | 2 |
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"); } |