Fixed Travis CI errors

Changed indentation from spaces to tabs
changed strings from single quote to double quote
This commit is contained in:
Beh
2017-03-07 00:34:17 +01:00
parent 9848f80630
commit f8d80422b2

View File

@@ -33,7 +33,7 @@ var CalendarFetcher = function(url, reloadInterval, maximumEntries, maximumNumbe
}; };
if (auth) { if (auth) {
if(auth.method === 'bearer'){ if(auth.method === "bearer"){
opts.auth = { opts.auth = {
bearer: auth.pass bearer: auth.pass
} }
@@ -44,7 +44,7 @@ var CalendarFetcher = function(url, reloadInterval, maximumEntries, maximumNumbe
pass: auth.pass pass: auth.pass
}; };
if(auth.method === 'digest'){ if(auth.method === "digest"){
opts.auth.sendImmediately = false; opts.auth.sendImmediately = false;
}else{ }else{
opts.auth.sendImmediately = true; opts.auth.sendImmediately = true;