mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-24 06:07:45 -06:00
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
Some checks are pending
Build Docker image / Build and Deploy (push) Waiting to run
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user