Fix prompt settings init

This commit is contained in:
Cohee 2023-06-07 18:02:51 +03:00 committed by maver
parent dce91f8fad
commit 4027afb737

View File

@ -362,7 +362,7 @@ PromptManagerModule.prototype.addPrompt = function (prompt, identifier) {
* @returns {void} * @returns {void}
*/ */
PromptManagerModule.prototype.sanitizeServiceSettings = function () { PromptManagerModule.prototype.sanitizeServiceSettings = function () {
this.serviceSettings.prompts.forEach((prompt => prompt.identifier = prompt.identifier || this.getUuidv4())); this.serviceSettings.prompts.forEach((prompt => prompt && (prompt.identifier = prompt.identifier || this.getUuidv4())));
// TODO: // TODO:
// Sanitize data // Sanitize data
}; };