Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/DiscordChatExporter/commit/9b3421e8a5daeb44a4624088c95ac45b0f0b8ed8?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
0 additions and
21 deletions
@ -17,8 +17,6 @@ public static class Program
public static string ProjectUrl { get ; } = "https://github.com/Tyrrrz/DiscordChatExporter" ;
public static string LatestReleaseUrl { get ; } = ProjectUrl + "/releases/latest" ;
public static string DocumentationUrl { get ; } = ProjectUrl + "/tree/master/.docs" ;
public static AppBuilder BuildAvaloniaApp ( ) = >
@ -38,9 +38,6 @@ public partial class SettingsService()
[ObservableProperty]
private int _parallelLimit = 1 ;
[ObservableProperty]
private Version ? _lastAppVersion ;
[ObservableProperty]
private string? _lastToken ;
@ -93,22 +93,6 @@ public partial class MainViewModel(
await ShowUkraineSupportMessageAsync ( ) ;
await CheckForUpdatesAsync ( ) ;
// App has just been updated, display the changelog
if (
settingsService . LastAppVersion is not null
& & settingsService . LastAppVersion ! = Program . Version
)
{
snackbarManager . Notify (
$"Successfully updated to {Program.Name} v{Program.VersionString}" ,
"WHAT'S NEW" ,
( ) = > ProcessEx . StartShellExecute ( Program . LatestReleaseUrl )
) ;
settingsService . LastAppVersion = Program . Version ;
settingsService . Save ( ) ;
}
}
protected override void Dispose ( bool disposing )