@skyzopedia/baileys-mod 5.0.7 → 5.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/Socket/socket.js +2 -2
- package/package.json +1 -1
package/lib/Socket/socket.js
CHANGED
|
@@ -215,7 +215,7 @@ export const makeSocket = (config) => {
|
|
|
215
215
|
try {
|
|
216
216
|
return signalRepository.lidMapping.getLIDForPN(pn)
|
|
217
217
|
} catch (err) {
|
|
218
|
-
|
|
218
|
+
return pn
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
const toPn = async (pn) => {
|
|
@@ -226,7 +226,7 @@ export const makeSocket = (config) => {
|
|
|
226
226
|
const pN = jid.split(":")[0] + server
|
|
227
227
|
return pN.toString()
|
|
228
228
|
} catch (err) {
|
|
229
|
-
|
|
229
|
+
return pn
|
|
230
230
|
}
|
|
231
231
|
}
|
|
232
232
|
let lastDateRecv;
|