Skip to content

Commit fb403cb

Browse files
committed
修复检查项目存在时的问题
1 parent 3e142e8 commit fb403cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

40code-mirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async function getExtensions() {
7070
// 检查项目是否存在
7171
async function checkProjectExists(extId) {
7272
try {
73-
const response = await api.get(`/project/namespace/${config.username}/${extId}`);
73+
const response = await api.get(`/project/namespace/${config.username}/40code-${extId}`);
7474
//console.log(response.data)
7575
return {
7676
exists: true,

0 commit comments

Comments
 (0)