mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-03-03 19:37:46 +01:00
Fix prompt settings init
This commit is contained in:
parent
dce91f8fad
commit
4027afb737
@ -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
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user