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 f275f4d commit 72e54a0Copy full SHA for 72e54a0
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 1.12.3 (29 Aug 2024)
2
+
3
+* fix: target.js cdn attribute
4
5
## 1.12.2 (29 Aug 2024)
6
7
* fix: firefox elements panel
package.json
@@ -1,6 +1,6 @@
{
"name": "chii",
- "version": "1.12.2",
+ "version": "1.12.3",
"description": "Chrome devtools framework",
"main": "./server/index.js",
"bin": {
src/target/config.ts
@@ -41,11 +41,10 @@ if (element) {
41
rtc = true;
42
}
43
cdn = element.getAttribute('cdn') || '';
44
- cdn = rtrim(cdn, '/');
45
46
47
-if (cdn && !endWith(cdn, '/')) {
48
- cdn += '/';
+if (cdn && endWith(cdn, '/')) {
+ cdn = rtrim(cdn, '/');
49
50
51
const sessionStore = safeStorage('session');
0 commit comments