diff options
author | James Lal <james@lightsofapollo.com> | 2012-07-06 16:50:20 -0700 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2012-07-06 16:50:20 -0700 |
commit | 619241a08ec736303324211e36ea7dafc4f46c51 (patch) | |
tree | 793ee6bf7f1bbf40e63e3d41ebee5c424e92106e /scripts/connect | |
parent | 1edfd60cccfdda4a21acbdef834f7b9db260af88 (diff) | |
download | jsCalDAV-619241a08ec736303324211e36ea7dafc4f46c51.tar.gz |
home resolver now will return an object instead of just the url
Diffstat (limited to 'scripts/connect')
-rwxr-xr-x | scripts/connect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/connect b/scripts/connect index 84f25a7..2807937 100755 --- a/scripts/connect +++ b/scripts/connect @@ -93,5 +93,5 @@ var home = new CalendarHome(con, { home.send(function(err, data) { console.log('CALENDAR_HOME:', data); - getCalendarDetails(data); + getCalendarDetails(data.url); }); |