Skip to content

Commit

Permalink
fix: updating with changes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmowat committed Oct 13, 2020
1 parent e8bd1b2 commit 319ac38
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions dist/oidc-client.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/oidc-client.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/oidc-client.rsa256.slim.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/oidc-client.rsa256.slim.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/oidc-client.slim.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/oidc-client.slim.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/oidc-client.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/oidc-client.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/oidc-client.rsa256.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/oidc-client.rsa256.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/IFrameWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class IFrameWindow {
if (this._timer &&
e.origin === this._origin &&
e.source === this._frame.contentWindow &&
(e.data.startsWith('http://') || e.data.startsWith('https://'))
(typeof e.data === 'string' && (e.data.startsWith('http://') || e.data.startsWith('https://')))
) {
let url = e.data;
if (url) {
Expand Down

0 comments on commit 319ac38

Please sign in to comment.