Skip to content

Commit 9479622

Browse files
committed
Fix case of Authorization header just in case
1 parent 55d20f2 commit 9479622

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/common/calendar.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ async function importEvent(event, calendarServer, token) {
228228
method: 'POST',
229229
headers: {
230230
'Content-Type': 'application/json',
231-
'Authorization': `bearer ${token}`,
231+
'Authorization': `Bearer ${token}`,
232232
'Accept': 'application/json'
233233
},
234234
body: JSON.stringify(event)

0 commit comments

Comments
 (0)