返回提交历史
Modified
HaloPixelToolBox/HaloPixelToolBox/ViewModels/CloudMusicLyricsToolPageViewModel.cs
+1
-1
XFEstudio/HaloPixelToolBox
修复部分显示问题
ac9b268
代码差异
1 个文件
+1
-1
@@ -61,7 +61,7 @@ public partial class CloudMusicLyricsToolPageViewModel : ServiceBaseViewModelBas
61
61
AutoNavigationParameterService.CurrentPage?.DispatcherQueue.TryEnqueue(() =>
62
62
{
63
63
CloudMusicReady = ready;
64
CloudMusicVersion = ready && Reader.VersionInfo != null ? $"{Reader.VersionInfo}" : "未检测到云音乐";
64
CloudMusicVersion = ready && Reader.VersionInfo is not null ? $"{Reader.VersionInfo.FileVersion}" : "未检测到云音乐";
65
65
});
66
66
await Task.Delay(500);
67
67
}