From 927a96688daf1a73deae15c56a7a9c12c42f6a39 Mon Sep 17 00:00:00 2001 From: Alexander Gavriliuk Date: Fri, 25 Oct 2024 11:38:42 +0200 Subject: Small fix in LLTeleportHandler::handle() --- indra/newview/llurldispatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llurldispatcher.cpp b/indra/newview/llurldispatcher.cpp index 166542324d..647210b7e6 100644 --- a/indra/newview/llurldispatcher.cpp +++ b/indra/newview/llurldispatcher.cpp @@ -306,7 +306,7 @@ public: if (tokens.size() < 1) return false; LLVector3 coords(128, 128, 0); - if (tokens.size() <= 4) + if (tokens.size() >= 3) // Require at least [1] and [2] { coords = LLVector3((F32)tokens[1].asReal(), (F32)tokens[2].asReal(), -- cgit v1.2.3