From f8d80422b27a40acadc80a603884cb3217e99f20 Mon Sep 17 00:00:00 2001 From: Beh Date: Tue, 7 Mar 2017 00:34:17 +0100 Subject: [PATCH] Fixed Travis CI errors Changed indentation from spaces to tabs changed strings from single quote to double quote --- modules/default/calendar/calendarfetcher.js | 28 ++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/modules/default/calendar/calendarfetcher.js b/modules/default/calendar/calendarfetcher.js index 4728ffae..9655f21e 100644 --- a/modules/default/calendar/calendarfetcher.js +++ b/modules/default/calendar/calendarfetcher.js @@ -33,22 +33,22 @@ var CalendarFetcher = function(url, reloadInterval, maximumEntries, maximumNumbe }; if (auth) { - if(auth.method === 'bearer'){ - opts.auth = { - bearer: auth.pass - } + if(auth.method === "bearer"){ + opts.auth = { + bearer: auth.pass + } - }else{ - opts.auth = { - user: auth.user, - pass: auth.pass - }; + }else{ + opts.auth = { + user: auth.user, + pass: auth.pass + }; - if(auth.method === 'digest'){ - opts.auth.sendImmediately = false; - }else{ - opts.auth.sendImmediately = true; - } + if(auth.method === "digest"){ + opts.auth.sendImmediately = false; + }else{ + opts.auth.sendImmediately = true; + } } }