Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6556dfc

Browse files
authored
Merge pull request#1409 from lowcoder-org/fix/category_null
Fix fallback issue for category and other settings
2 parents9bf48c1 +3a12dd8 commit6556dfc

File tree

1 file changed

+3
-3
lines changed
  • server/api-service/lowcoder-domain/src/main/java/org/lowcoder/domain/application/model

1 file changed

+3
-3
lines changed

‎server/api-service/lowcoder-domain/src/main/java/org/lowcoder/domain/application/model/Application.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public Mono<String> getCategory(ApplicationRecordService applicationRecordServic
178178
}else {
179179
return"";
180180
}
181-
});
181+
}).onErrorReturn("");
182182
}
183183

184184
publicMono<String>getTitle(ApplicationRecordServiceapplicationRecordService) {
@@ -192,7 +192,7 @@ public Mono<String> getTitle(ApplicationRecordService applicationRecordService)
192192
}else {
193193
return"";
194194
}
195-
});
195+
}).onErrorReturn("");
196196
}
197197

198198
publicMono<String>getDescription(ApplicationRecordServiceapplicationRecordService) {
@@ -207,7 +207,7 @@ public Mono<String> getDescription(ApplicationRecordService applicationRecordSer
207207
return"";
208208
}
209209
}
210-
);
210+
).onErrorReturn("");
211211
}
212212

213213
publicMono<String>getIcon(ApplicationRecordServiceapplicationRecordService) {

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp