Example #1
0
        public override async Task SendKeepAlive()
        {
            if (Controller.SyncQueue.Running)
            {
                return;
            }

            try
            {
                _sftpc.SendKeepAlive();
            }
            catch (Exception ex)
            {
                ex.LogException();
                await Reconnect();
            }
        }