File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -305,27 +305,28 @@ String formatSystemBuildNr(uint16_t buildNr) {
305
305
}
306
306
307
307
String getPluginDescriptionString () {
308
- return F (
309
- " "
308
+ String result = F (" ["
310
309
#ifdef PLUGIN_BUILD_NORMAL
311
- " [ Normal] "
310
+ " \" Normal\" "
312
311
#endif // ifdef PLUGIN_BUILD_NORMAL
313
312
#ifdef PLUGIN_BUILD_COLLECTION
314
- " [ Collection] "
313
+ " \" Collection\" "
315
314
#endif // ifdef PLUGIN_BUILD_COLLECTION
316
315
#ifdef PLUGIN_BUILD_DEV
317
- " [ Development] "
316
+ " \" Development\" "
318
317
#endif // ifdef PLUGIN_BUILD_DEV
319
318
#ifdef PLUGIN_DESCR
320
- " [ " PLUGIN_DESCR " ] "
319
+ " \" " PLUGIN_DESCR " \" "
321
320
#endif // ifdef PLUGIN_DESCR
322
321
#ifdef BUILD_NO_DEBUG
323
- " [ No Debug Log] "
322
+ " \" No Debug Log\" "
324
323
#endif
325
324
#if FEATURE_NON_STANDARD_24_TASKS && defined(ESP8266)
326
- " [ 24tasks] "
325
+ " \" 24tasks\" "
327
326
#endif // if FEATURE_NON_STANDARD_24_TASKS && defined(ESP8266)
328
- );
327
+ " ]" );
328
+ result.replace (" \"\" " , " \" ,\" " );
329
+ return result;
329
330
}
330
331
331
332
String getSystemLibraryString () {
You can’t perform that action at this time.
0 commit comments