Skip to content

Commit

Permalink
fixbug: 文本和文件分享"Authorization"认证
Browse files Browse the repository at this point in the history
  • Loading branch information
ling-drag0n authored Dec 16, 2024
1 parent b2ea40b commit 1833a3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -3553,7 +3553,7 @@ createApp({
expiresIn: expiresIn.value,
isMarkdown: isMarkdown.value,
customId: customId.value,
maxViews: parseInt(maxViews.value) || 0
maxViews: maxViews.value ? parseInt(maxViews.value) : 0
}),
});
Expand Down

0 comments on commit 1833a3c

Please sign in to comment.