Skip to content

Commit a306dad

Browse files
authored
Merge branch 'main' into brett-i623/fix-create-ssh-dir-if-not-exist
2 parents 49e5e75 + e4c6c10 commit a306dad

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

site/src/modules/resources/AppLink/AppLink.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,7 @@ export const AppLink: FC<AppLinkProps> = ({ app, workspace, agent }) => {
106106

107107
event.preventDefault();
108108

109-
// This is an external URI like "vscode://", so
110-
// it needs to be opened with the browser protocol handler.
111-
const shouldOpenAppExternally =
112-
app.external && app.url?.startsWith("http");
113-
114-
if (shouldOpenAppExternally) {
109+
if (app.external) {
115110
// This is a magic undocumented string that is replaced
116111
// with a brand-new session token from the backend.
117112
// This only exists for external URLs, and should only

tailnet/proto/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040
// ScriptCompleted, but be prepared to process "unsupported" errors.)
4141
//
4242
// API v2.4:
43-
// - Shipped in Coder v2.{{placeholder}} // TODO Vincent: Replace with the correct version
43+
// - Shipped in Coder v2.20.0
4444
// - Added support for GetResourcesMonitoringConfiguration and
4545
// PushResourcesMonitoringUsage RPCs on the Agent API.
4646
// - Added support for reporting connection events for auditing via the

0 commit comments

Comments
 (0)