Commit de39e602 by Sixong.Zhu

u

parent 39d4ed44
Showing with 6 additions and 9 deletions
......@@ -24,6 +24,8 @@
import { UserAgentHelper } from "@/customer-service/third-party/user-agent";
import Chat from "@/customer-service/xim/";
const fsImg = /(fs(.*))/;
@Component({ components: { FileIcon } })
export default class Index extends BaseMessage {
private readonly image404 = FileType.Image_404;
......@@ -36,16 +38,11 @@
if (this.messageRealUrl) {
const sdk = Chat.getSdk();
const s = sdk.mediaController.buildThumbnail;
if (
this.messageRealUrl.startsWith("http") &&
/fs/i.test(this.messageRealUrl)
) {
return (
sdk.global.baseUrl +
s(this.messageRealUrl.replace(sdk.global.baseUrl, ""), 300)
);
if (fsImg.test(this.messageRealUrl)) {
const m = fsImg.exec(this.messageRealUrl);
return sdk.global.baseUrl + s(m[0], 300);
}
return s(this.messageRealUrl, 300);
return this.messageRealUrl;
}
return "";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment