chore: bump version to 2.3.3 in package-lock.json and update remoteJid handling in Baileys service
Some checks are pending
Build Docker image / Build and Deploy (push) Waiting to run

This commit is contained in:
Davidson Gomes
2025-09-08 15:48:38 -03:00
parent e864b18561
commit 8830f476e8
5 changed files with 14 additions and 14 deletions

View File

@@ -153,7 +153,7 @@ export default async function useMultiFileAuthStatePrisma(
ids.map(async (id) => {
let value = await readData(`${type}-${id}`);
if (type === 'app-state-sync-key' && value) {
value = proto.Message.AppStateSyncKeyData.fromObject(value);
value = proto.Message.AppStateSyncKeyData.create(value);
}
data[id] = value;

View File

@@ -100,7 +100,7 @@ export class AuthStateProvider {
ids.map(async (id) => {
let value = await readData(`${type}-${id}`);
if (type === 'app-state-sync-key' && value) {
value = proto.Message.AppStateSyncKeyData.fromObject(value);
value = proto.Message.AppStateSyncKeyData.create(value);
}
data[id] = value;

View File

@@ -50,7 +50,7 @@ export async function useMultiFileAuthStateRedisDb(
ids.map(async (id) => {
let value = await readData(`${type}-${id}`);
if (type === 'app-state-sync-key' && value) {
value = proto.Message.AppStateSyncKeyData.fromObject(value);
value = proto.Message.AppStateSyncKeyData.create(value);
}
data[id] = value;