File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
server/api-service/lowcoder-domain/src/main/java/org/lowcoder/domain/application/model Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ public Mono<String> getCategory(ApplicationRecordService applicationRecordServic
178178 } else {
179179 return "" ;
180180 }
181- });
181+ }). onErrorReturn ( "" ) ;
182182 }
183183
184184 public Mono <String > getTitle (ApplicationRecordService applicationRecordService ) {
@@ -192,7 +192,7 @@ public Mono<String> getTitle(ApplicationRecordService applicationRecordService)
192192 } else {
193193 return "" ;
194194 }
195- });
195+ }). onErrorReturn ( "" ) ;
196196 }
197197
198198 public Mono <String > getDescription (ApplicationRecordService applicationRecordService ) {
@@ -207,7 +207,7 @@ public Mono<String> getDescription(ApplicationRecordService applicationRecordSer
207207 return "" ;
208208 }
209209 }
210- );
210+ ). onErrorReturn ( "" ) ;
211211 }
212212
213213 public Mono <String > getIcon (ApplicationRecordService applicationRecordService ) {
You can’t perform that action at this time.
0 commit comments