Skip to content

Commit 7694731

Browse files
committed
Fix Safari detection.
1 parent eae3210 commit 7694731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/editor/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function isSafari() {
3838

3939
export function disableUnsupportedAlgorithms() {
4040
// TODO: test supported algorithms in runtime
41-
if(isSafari) {
41+
if(isSafari()) {
4242
algorithmEs512.disabled = true;
4343
}
4444
}

0 commit comments

Comments
 (0)