private async void TimerCommentAdd_Tick(object sender, EventArgs e)
        {
            await Task.Delay(100);

            if (!string.IsNullOrEmpty(_newComment))
            {
                await _youtubeApi.AddComment(_videoId, _newComment);
            }
            _newComment = "";
            timerCommentAdd.Stop();
        }