Merge lp:~ken-vandine/account-plugins/12.10_lp1180297 into lp:account-plugins/12.10

Proposed by Ken VanDine
Status: Merged
Approved by: Alberto Mardegan
Approved revision: 76
Merged at revision: 76
Proposed branch: lp:~ken-vandine/account-plugins/12.10_lp1180297
Merge into: lp:account-plugins/12.10
Diff against target: 15 lines (+5/-0)
1 file modified
src/facebook.vala (+5/-0)
To merge this branch: bzr merge lp:~ken-vandine/account-plugins/12.10_lp1180297
Reviewer Review Type Date Requested Status
Alberto Mardegan (community) Approve
Review via email: mp+167298@code.launchpad.net

Commit message

Allow Facebook to connect via plain HTTP (LP: #1180297)

  Workaround for https://developers.facebook.com/bugs/449221825171392

Description of the change

Allow Facebook to connect via plain HTTP (LP: #1180297)

  Workaround for https://developers.facebook.com/bugs/449221825171392

To post a comment you must log in.
Revision history for this message
Alberto Mardegan (mardy) wrote :

Thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/facebook.vala'
2--- src/facebook.vala 2012-11-12 11:24:22 +0000
3+++ src/facebook.vala 2013-06-04 14:44:38 +0000
4@@ -42,6 +42,11 @@
5 "xmpp_login"
6 };
7 oauth_params.insert ("Scope", scopes);
8+ string[] schemes = {
9+ "https",
10+ "http"
11+ };
12+ oauth_params.insert ("AllowedSchemes", schemes);
13 set_oauth_parameters (oauth_params);
14 }
15 }

Subscribers

People subscribed via source and target branches