diff options
author | Rider Linden <rider@lindenlab.com> | 2015-08-24 14:19:30 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-08-24 14:19:30 -0700 |
commit | 7c61728b4bae928b2461f0f933dd1c1fa34ef0aa (patch) | |
tree | dc43fab3897d0a9b7ae4d4f0625db24596a7ffc5 /indra/llui | |
parent | 7d2ed8e60668a69e97c58072377273e035022cd2 (diff) |
MAINT-4952: Removed a bit of debug code that got included accidentally and change host == LLHost() to host.isInvalid()
Diffstat (limited to 'indra/llui')
-rwxr-xr-x | indra/llui/llurlentry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index adefae6e2d..eb7f98e618 100755 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -1006,7 +1006,7 @@ std::string LLUrlEntryParcel::getLabel(const std::string &url, const LLUrlLabelC void LLUrlEntryParcel::sendParcelInfoRequest(const LLUUID& parcel_id) { - if (sRegionHost == LLHost() || sDisconnected) return; + if (sRegionHost.isInvalid() || sDisconnected) return; LLMessageSystem *msg = gMessageSystem; msg->newMessage("ParcelInfoRequest"); |