We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3e7290 commit 83dda23Copy full SHA for 83dda23
gulpfile.js
@@ -11,7 +11,7 @@ const headerComment = require('gulp-header-comment');
11
// Settings for building packages
12
const settings = {
13
name: 'codesy',
14
- version: '0.0.0.9',
+ version: '0.0.1.0',
15
source: './src',
16
destination: './dist',
17
static_files: {
src/on_install.js
@@ -63,7 +63,7 @@ chrome.runtime.onInstalled.addListener(when_installed);
63
// functions for handling auth changes:
64
65
const auth_header ='x-codesy-auth-changed'
66
-const has_auth_header = ({name})=>{ return name.startsWith(auth_header) }
+const has_auth_header = ({name})=>{ return name.toLowerCase().startsWith(auth_header) }
67
68
function check_codesy_auth ({responseHeaders}) {
69
auth_headers = responseHeaders.filter(has_auth_header)
0 commit comments