Fix saveChat positional argument migration
| @@ -6757,7 +6757,7 @@ export function saveChatDebounced() { | ||
| 6757 | 6757 | * @returns {Promise<void>} |
| 6758 | 6758 | */ |
| 6759 | 6759 | export async function saveChat({ chatName, withMetadata, mesId, force = false } = {}) { |
| 6760 | 6760 | if (arguments.length > 10 && typeof arguments[0] !== 'object') { |
| 6761 | 6761 | console.trace('saveChat called with positional arguments. Please use an object instead.'); |
| 6762 | 6762 | [chatName, withMetadata, mesId, force] = arguments; |
| 6763 | 6763 | } |