Telegram Web K with changes to work inside I2P
https://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
809 B
17 lines
809 B
3 years ago
|
/*
|
||
|
* https://github.com/morethanwords/tweb
|
||
|
* Copyright (C) 2019-2021 Eduard Kuzmenko
|
||
|
* https://github.com/morethanwords/tweb/blob/master/LICENSE
|
||
|
*/
|
||
|
|
||
|
import { PhotoSize } from "../layer";
|
||
|
import type { MyDocument } from "../lib/appManagers/appDocsManager";
|
||
|
import type { MyPhoto } from "../lib/appManagers/appPhotosManager";
|
||
|
import appDownloadManager from "../lib/appManagers/appDownloadManager";
|
||
|
import getPreviewURLFromBytes from "./bytes/getPreviewURLFromBytes";
|
||
|
|
||
|
export default function getPreviewURLFromThumb(photo: MyPhoto | MyDocument, thumb: PhotoSize.photoCachedSize | PhotoSize.photoStrippedSize, isSticker = false) {
|
||
|
const cacheContext = appDownloadManager.getCacheContext(photo, thumb.type);
|
||
|
return cacheContext.url || (cacheContext.url = getPreviewURLFromBytes(thumb.bytes, isSticker));
|
||
|
}
|