node-karin 1.3.8 → 1.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# 更新日志
|
|
2
2
|
|
|
3
|
+
## [1.3.9](https://github.com/KarinJS/Karin/compare/core-v1.3.8...core-v1.3.9) (2025-02-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 鉴权失败打印auth ([a0a4df6](https://github.com/KarinJS/Karin/commit/a0a4df6d2300f7ee08326a309bfcb38ae674f30d))
|
|
9
|
+
|
|
3
10
|
## [1.3.8](https://github.com/KarinJS/Karin/compare/core-v1.3.7...core-v1.3.8) (2025-02-14)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.js
CHANGED
|
@@ -16150,7 +16150,7 @@ var init_server2 = __esm({
|
|
|
16150
16150
|
}
|
|
16151
16151
|
const auth2 = this.request.headers["authorization"];
|
|
16152
16152
|
if (auth2 !== `Bearer ${token}`) {
|
|
16153
|
-
this.logger("error", `[oneBot11][\u9274\u6743\u5931\u8D25] address: ${this.adapter.address} token: ${token}`);
|
|
16153
|
+
this.logger("error", `[oneBot11][\u9274\u6743\u5931\u8D25] address: ${this.adapter.address} token: ${token} auth: ${auth2}`);
|
|
16154
16154
|
this.socket.close();
|
|
16155
16155
|
return false;
|
|
16156
16156
|
}
|