We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa95f2a commit 7864a2dCopy full SHA for 7864a2d
1 file changed
V2rayU/App/AppMenu.swift
@@ -674,8 +674,10 @@ final class AppMenuManager: NSObject, NSMenuDelegate {
674
}
675
676
@objc private func goHelp(_ sender: NSMenuItem) {
677
- AppState.shared.mainTab = .about
678
- MainWindowManager.shared.openMainWindow()
+ guard let url = URL(string: "https://github.com/yanue/v2rayu/issues") else {
+ return
679
+ }
680
+ NSWorkspace.shared.open(url)
681
682
683
@objc private func switchRunMode(_ sender: NSMenuItem) {
0 commit comments