We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bda7280 commit c3d1875Copy full SHA for c3d1875
api-link-parser.js
@@ -12,8 +12,8 @@ function decodeLink(url) {
12
13
url = decodeURIComponent(url);
14
15
- const isEmbed = url.endsWith('&embed=true');
16
- if (isEmbed) url = url.slice(0, -('&embed=true'.length));
+ const isEmbed = url.endsWith('?embed=true');
+ if (isEmbed) url = url.slice(0, -('?embed=true'.length));
17
18
const isDev = url.startsWith('https://dev.cde.run/');
19
0 commit comments