summaryrefslogtreecommitdiff
path: root/indra/newview/llaisapi.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-10-04 00:01:51 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-10-04 00:01:51 +0300
commit5d7b1b09ff195611548bababf36d412ef76ed924 (patch)
tree812ee9c00133ec5b01fe0bb8e00ab33558488e10 /indra/newview/llaisapi.cpp
parent5566f28b039e2f3999e397a26243707affc80991 (diff)
MacOS build fix
Diffstat (limited to 'indra/newview/llaisapi.cpp')
-rw-r--r--indra/newview/llaisapi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llaisapi.cpp b/indra/newview/llaisapi.cpp
index b7d0b1ef1a..17e1a27934 100644
--- a/indra/newview/llaisapi.cpp
+++ b/indra/newview/llaisapi.cpp
@@ -1036,7 +1036,7 @@ AISUpdate::AISUpdate(const LLSD& update, AISAPI::COMMAND_TYPE type, const LLSD&
mFetchDepth = request_body["depth"].asInteger();
}
- mTimer.setTimerExpirySec(EXPIRY_SECONDS_LIVE);
+ mTimer.setTimerExpirySec(AIS_EXPIRY_SECONDS);
mTimer.start();
parseUpdate(update);
}
@@ -1062,7 +1062,7 @@ void AISUpdate::checkTimeout()
{
llcoro::suspend();
LLCoros::checkStop();
- mTimer.setTimerExpirySec(EXPIRY_SECONDS_LIVE);
+ mTimer.setTimerExpirySec(AIS_EXPIRY_SECONDS);
}
}