We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c53a83 commit 2ee2df3Copy full SHA for 2ee2df3
server/utils/index.js
@@ -75,7 +75,7 @@ const mergeCache = (oldCache, newCache) => {
75
const isValidUrl = (url) => {
76
try {
77
// eslint-disable-next-line no-new
78
- new URL(!url);
+ new URL(url);
79
return true;
80
} catch (err) {
81
return false;
0 commit comments