File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -1626,7 +1626,7 @@ <h2 :class="version === ver.version ? 'primary--text' : undefined">v{{ver.versio
1626
1626
const apps = [ ]
1627
1627
this . appSubs . forEach ( ( appsub ) => {
1628
1628
const sub = this . appSubCaches [ appsub . url ]
1629
- if ( sub && sub . apps ) {
1629
+ if ( sub && sub . apps && Array . isArray ( sub . apps ) ) {
1630
1630
sub . apps . forEach ( ( app ) => {
1631
1631
this . loadAppBaseInfo ( app )
1632
1632
apps . push ( app )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const $ = new Env('BoxJs')
3
3
// 为 eval 准备的上下文环境
4
4
const $eval_env = { }
5
5
6
- $ . version = '0.7.55 '
6
+ $ . version = '0.7.56 '
7
7
$ . versionType = 'beta'
8
8
9
9
/**
@@ -253,7 +253,7 @@ function getBoxData() {
253
253
sysapps . forEach ( ( app ) => Object . assign ( datas , getAppDatas ( app ) ) )
254
254
usercfgs . appsubs . forEach ( ( sub ) => {
255
255
const subcache = appSubCaches [ sub . url ]
256
- if ( subcache && subcache . apps ) {
256
+ if ( subcache && subcache . apps && Array . isArray ( subcache . apps ) ) {
257
257
subcache . apps . forEach ( ( app ) => Object . assign ( datas , getAppDatas ( app ) ) )
258
258
}
259
259
} )
Original file line number Diff line number Diff line change 1
1
{
2
2
"releases" : [
3
+ {
4
+ "version" : " 0.7.56" ,
5
+ "tags" : [" beta" ],
6
+ "author" : " @chavyleung" ,
7
+ "msg" : " 更新[BoxJs TF]: 修复一处导致白屏逻辑" ,
8
+ "notes" : [
9
+ {
10
+ "name" : " 修复" ,
11
+ "descs" : [" 修复一处导致白屏逻辑" ]
12
+ }
13
+ ]
14
+ },
3
15
{
4
16
"version" : " 0.7.55" ,
5
17
"tags" : [" beta" ],
You can’t perform that action at this time.
0 commit comments