This commit is contained in:
Andrey Kondratev
2025-08-29 15:33:33 +05:00
parent 2931ba9847
commit 4dfd11e3fb
2 changed files with 6 additions and 2 deletions

View File

@@ -212,7 +212,7 @@ class QuixoticApp {
public async convertVideo(videoId: string, title: string, url: string): Promise<void> {
console.log('🎵 CONVERT VIDEO CALLED:', { videoId, title, url });
console.log('🔧 Telegram WebApp available:', !!this.tg);
const videoElement = (event as any)?.currentTarget as HTMLElement;
const videoElement = document.activeElement as HTMLElement;
if (videoElement) {
videoElement.classList.add('tg-list-item--converting');
}