1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-08-15 03:25:10 +00:00

change load params for identica too

This commit is contained in:
Gabor Adam Toth 2011-08-24 11:11:56 +02:00
parent c9b3d242a3
commit e440532c58
2 changed files with 5 additions and 3 deletions

View file

@ -9,7 +9,7 @@
inherit NET_PATH "twitter/client";
object load(object usr, string key, string secret, string request, string access, string authorize) {
object load(object usr, mapping opts) {
name = "identica";
display_name = "identi.ca";
api_base_url = "http://identi.ca/api";
@ -20,5 +20,5 @@ object load(object usr, string key, string secret, string request, string access
access_token_url = api_base_url + "/oauth/access_token";
authorize_url = api_base_url + "/oauth/authorize";
return ::load(usr, key, secret, request, access, authorize);
return ::load(usr, opts);
}