File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,7 @@ function checkIfIconsExistForApps(apps, iconsFolder) {
50
50
if ( 'ENOENT' == err . code ) { // file does not exist
51
51
console . warn ( 'Icon with file name: ' + iconName + ' couldn\'t be found in icons folder!' ) ;
52
52
} else {
53
- console . log (
54
- 'An error occurd while checking for icons, please check permission!' ) ;
53
+ console . warn ( 'An error occurred while checking for icons, please check permission!' ) ;
55
54
}
56
55
} else {
57
56
//every thing was ok so for example you can read it and send it to client
@@ -1021,14 +1020,14 @@ You have direct access to the Parse database through function calls, so you can
1021
1020
if ( ! followUpContent ) {
1022
1021
console . warn ( 'OpenAI returned null content in follow-up response, using fallback message' ) ;
1023
1022
}
1024
- return followUpContent || 'Operation completed successfully .' ;
1023
+ return followUpContent || 'Done .' ;
1025
1024
}
1026
1025
1027
1026
const content = responseMessage . content ;
1028
1027
if ( ! content ) {
1029
1028
console . warn ( 'OpenAI returned null content in initial response, using fallback message' ) ;
1030
1029
}
1031
- return content || 'Operation completed successfully .' ;
1030
+ return content || 'Done .' ;
1032
1031
}
1033
1032
1034
1033
// Serve the app icons. Uses the optional `iconsFolder` parameter as
You can’t perform that action at this time.
0 commit comments