We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b03cfce commit a9322b5Copy full SHA for a9322b5
plugins/open-in-app/index.js
@@ -92,6 +92,8 @@ async function onClick(e) {
92
// so find the closest anchor element
93
const anchor = e?.target?.closest("a");
94
if (!anchor?.href || !getEnabledApp(anchor.href)) return;
95
+ const playOnSpotifyButton = e?.target?.closest(".ioj4-pos-buttons");
96
+ if (playOnSpotifyButton) return;
97
98
e.preventDefault();
99
e.stopImmediatePropagation();
0 commit comments