This commit is contained in:
Liang Ding 2023-01-05 16:09:10 +08:00
parent fbb1fee486
commit a4ca84376b
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
6 changed files with 11 additions and 6 deletions

View file

@ -22,6 +22,7 @@ import (
"os"
"path/filepath"
"strings"
"time"
"github.com/88250/gulu"
"github.com/gin-gonic/gin"
@ -176,5 +177,9 @@ func setWorkspaceDir(c *gin.Context) {
}
}
util.PushMsg(model.Conf.Language(42), 1000*15)
if util.ContainerAndroid == util.Container || util.ContainerIOS == util.Container {
util.PushMsg(model.Conf.Language(42), 1000*15)
time.Sleep(time.Second * 2)
model.Close(false, 1)
}
}