koishi-plugin-starfx-bot 0.19.7 → 0.19.8
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/lib/index.js +2 -2
- package/package.json +1 -1
- package/readme.md +2 -1
package/lib/index.js
CHANGED
|
@@ -970,7 +970,7 @@ var package_default = {
|
|
|
970
970
|
contributors: [
|
|
971
971
|
"StarFreedomX <starfreedomx@outlook.com>"
|
|
972
972
|
],
|
|
973
|
-
version: "0.19.
|
|
973
|
+
version: "0.19.8",
|
|
974
974
|
main: "lib/index.js",
|
|
975
975
|
typings: "lib/index.d.ts",
|
|
976
976
|
files: [
|
|
@@ -1297,7 +1297,7 @@ function apply(ctx, cfg) {
|
|
|
1297
1297
|
return LOCAL_PATH_REGEX.test(src);
|
|
1298
1298
|
}, convertUriToLocalPath = function(uri) {
|
|
1299
1299
|
if (uri.startsWith("file:///")) {
|
|
1300
|
-
return decodeURIComponent(uri.substring(
|
|
1300
|
+
return decodeURIComponent(uri.substring(7));
|
|
1301
1301
|
}
|
|
1302
1302
|
return uri;
|
|
1303
1303
|
}, toBase64String = function(src) {
|
package/package.json
CHANGED
package/readme.md
CHANGED