apps: updated manual url

This commit is contained in:
Alex Andres 2024-02-26 16:28:56 +01:00
parent 3923294b02
commit 17db78d6b5
No known key found for this signature in database
GPG key ID: 340764C7851D7041
2 changed files with 2 additions and 2 deletions

View file

@ -399,7 +399,7 @@ public class MenuPresenter extends Presenter<MenuView> {
public void showManual() {
try {
Desktop.getDesktop().browse(URI.create("https://lect.stream/manual/de/index.html"));
Desktop.getDesktop().browse(URI.create("https://www.lecturestudio.org/manual/"));
}
catch (IOException e) {
handleException(e, "Open manual uri failed", "generic.error");

View file

@ -580,7 +580,7 @@ public class MenuPresenter extends Presenter<MenuView> {
public void showManual() {
CompletableFuture.runAsync(() -> {
try {
Desktop.getDesktop().browse(URI.create("https://lect.stream/manual/de/index.html"));
Desktop.getDesktop().browse(URI.create("https://www.lecturestudio.org/manual/"));
}
catch (IOException e) {
handleException(e, "Open manual uri failed", "generic.error");