HamBook – Diff between revs 16 and 17
?pathlinks?
Rev 16 | Rev 17 | |||
---|---|---|---|---|
Line 711... | Line 711... | |||
711 | } |
711 | } |
|
Line 712... | Line 712... | |||
712 | |
712 | |
|
713 | try |
713 | try |
|
714 | { |
714 | { |
|
715 | _tickerTextMemoryChannel.CurrentLocation = $"{_storedMemoryChannelLocation:000}"; |
715 | _tickerTextMemoryChannel.CurrentLocation = $"{_storedMemoryChannelLocation:000}"; |
|
Line 716... | Line 716... | |||
716 | _tickerTextMemoryChannel.Text = $"{_storedMemoryChannelTagText, 12}"; |
716 | _tickerTextMemoryChannel.Text = $"{_storedMemoryChannelTagText, -12}"; |
|
717 | |
717 | |
|
718 | var success = await _catAssemblies.CatSetAsync<MemoryChannel, bool>("MT", new object[] { _tickerTextMemoryChannel }, _cancellationToken); |
718 | var success = await _catAssemblies.CatSetAsync<MemoryChannel, bool>("MT", new object[] { _tickerTextMemoryChannel }, _cancellationToken); |
|
719 | if (!success) |
719 | if (!success) |
|
Line 725... | Line 725... | |||
725 | } |
725 | } |
|
726 | catch(Exception exception) |
726 | catch(Exception exception) |
|
727 | { |
727 | { |
|
728 | Log.Error(exception, Resources.Error_while_restoring_memory_text); |
728 | Log.Error(exception, Resources.Error_while_restoring_memory_text); |
|
729 | } |
729 | } |
|
- | 730 | finally |
||
- | 731 | { |
||
- | 732 | _tickerTaskRunning = false; |
||
- | 733 | } |
||
730 | } |
734 | } |
|
Line 731... | Line 735... | |||
731 | |
735 | |
|
732 | private async Task CycleText(Queue<char> characterQueue) |
736 | private async Task CycleText(Queue<char> characterQueue) |
|
733 | { |
737 | { |