Fix fetching groupInfo for private chats with group
This commit is contained in:
parent
caae6fb6a4
commit
2459741e16
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mx-puppet-vk",
|
"name": "mx-puppet-vk",
|
||||||
"version": "0.5.0",
|
"version": "0.5.1",
|
||||||
"description": "Matrix <-> VK bridge based on mx-puppet-bridge and VK-IO.",
|
"description": "Matrix <-> VK bridge based on mx-puppet-bridge and VK-IO.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -116,7 +116,7 @@ export class VkPuppet {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "group":
|
case "group":
|
||||||
const groupInfo = await p.client.api.groups.getById({ group_id: info.items[0].peer.id });
|
const groupInfo = await p.client.api.groups.getById({ group_id: Math.abs(info.items[0].peer.id).toString() });
|
||||||
response = {
|
response = {
|
||||||
puppetId,
|
puppetId,
|
||||||
roomId: peerId.toString(),
|
roomId: peerId.toString(),
|
||||||
|
|
Loading…
Reference in a new issue