From 0815f47bdd867b816b4bf2ca1c7bd7f89e1527ca Mon Sep 17 00:00:00 2001 From: Watts Martin Date: Thu, 5 Dec 2024 05:36:51 -0500 Subject: [PATCH] Fix Panic Nova link template (#694) The URL scheme for Nova is incorrect; per Panic's recent post (https://social.panic.com/@panic/112689904216756608) this now uses the correct format. This is tested (briefly) with Laravel for confirmation. --- src/DebugBar/DataFormatter/HasXdebugLinks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DebugBar/DataFormatter/HasXdebugLinks.php b/src/DebugBar/DataFormatter/HasXdebugLinks.php index ea4f734..9123a0b 100644 --- a/src/DebugBar/DataFormatter/HasXdebugLinks.php +++ b/src/DebugBar/DataFormatter/HasXdebugLinks.php @@ -120,7 +120,7 @@ trait HasXdebugLinks 'vscode-remote' => 'vscode://vscode-remote/%f:%l', 'vscode-insiders-remote' => 'vscode-insiders://vscode-remote/%f:%l', 'vscodium' => 'vscodium://file/%f:%l', - 'nova' => 'nova://core/open/file?filename=%f&line=%l', + 'nova' => 'nova://open?path=%f&line=%l', 'xdebug' => 'xdebug://%f@%l', 'atom' => 'atom://core/open/file?filename=%f&line=%l', 'espresso' => 'x-espresso://open?filepath=%f&lines=%l',