Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/Authentification/OAuthView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,7 @@ public class OnlineAccounts.OAuthView : OnlineAccounts.AbstractAuthView {
return true;
}

private bool on_load_uri_failed (WebKit.LoadEvent load_event, string failing_uri, void* _error) {
var error = (GLib.Error)_error;
private bool on_load_uri_failed (WebKit.LoadEvent load_event, string failing_uri, GLib.Error error) {
warning ("Loading uri '%s' failed, error : %s", failing_uri, error.message);
if (GLib.strcmp (failing_uri, oauth_open_url) == 0) {
error_code = OnlineAccounts.SignonUIError.NOT_AVAILABLE;
Expand Down