mirror of
https://github.com/TheFunny/TelegramTwitterMediaBot.git
synced 2026-09-25 23:52:04 +00:00
fix: filter local animation cache sources
This commit is contained in:
@@ -332,7 +332,7 @@ fn kind_of_item(item: &MediaItemPayload) -> CachedMediaKind {
|
||||
|
||||
/// A cache entry may replay a remote source URL. Local temp paths disappear
|
||||
/// when the task settles and must never be persisted as a source.
|
||||
fn replayable_cache_url(media: &str) -> String {
|
||||
pub(super) fn replayable_cache_url(media: &str) -> String {
|
||||
if media.starts_with("http://") || media.starts_with("https://") {
|
||||
media.to_string()
|
||||
} else {
|
||||
|
||||
@@ -50,7 +50,7 @@ pub(super) async fn cache_animation_send(
|
||||
vec![CachedMedia {
|
||||
kind: CachedMediaKind::Animation,
|
||||
file_id,
|
||||
url: source_url.to_string(),
|
||||
url: super::replayable_cache_url(source_url),
|
||||
}],
|
||||
)
|
||||
.await;
|
||||
|
||||
Reference in New Issue
Block a user