diff --git a/src/applications/phame/controller/PhameLiveController.php b/src/applications/phame/controller/PhameLiveController.php --- a/src/applications/phame/controller/PhameLiveController.php +++ b/src/applications/phame/controller/PhameLiveController.php @@ -129,7 +129,14 @@ $uri = $post->getViewURI(); } - return id(new AphrontRedirectResponse())->setURI($uri); + $response = id(new AphrontRedirectResponse()) + ->setURI($uri); + + if ($is_external) { + $response->setIsExternal(true); + } + + return $response; } }