We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc95cb6 + af6ca59 commit d7f4b50Copy full SHA for d7f4b50
src/pages/video.ts
@@ -64,8 +64,8 @@ function simpleShare() {
64
shareBtn.addEventListener('click', () => {
65
let title = document.querySelector('#viewbox_report > h1')?.textContent as string
66
if (
67
- !'(({【[[《「<{〔〖<〈『'.includes(title[0]) ||
68
- '))}】]]》」>}〕〗>〉』'.includes(title.slice(-1))
+ !'(({【[[《「<{〔〖<〈『'.includes(title[0]) &&
+ !'))}】]]》」>}〕〗>〉』'.includes(title.slice(-1))
69
) {
70
title = `【${title}】`
71
}
0 commit comments