dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
18 lines
439 B
TypeScript
18 lines
439 B
TypeScript
import socket from "../socket";
|
|
import {store} from "../store";
|
|
|
|
socket.on("msg:preview", function (data) {
|
|
const netChan = store.getters.findChannel(data.chan);
|
|
const message = netChan?.channel.messages.find((m) => m.id === data.id);
|
|
|
|
if (!message) {
|
|
return;
|
|
}
|
|
|
|
const previewIndex = message.previews.findIndex((m) => m.link === data.preview.link);
|
|
|
|
if (previewIndex > -1) {
|
|
message.previews[previewIndex] = data.preview;
|
|
}
|
|
});
|