Fix obscure check

master
Ansariel 2025-09-08 18:29:34 +02:00
parent 0d2477c827
commit 7d77802121
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@ void RlvGiveToRLVTaskOffer::doneIdle()
void RlvGiveToRLVTaskOffer::onDestinationCreated(const LLUUID& idDestFolder, const std::string& strName)
{
if (idDestFolder.notNull() ? gInventory.getCategory(idDestFolder) : nullptr)
if (idDestFolder.notNull())
{
moveAndRename(m_Folders.front(), idDestFolder, strName, new LLBoostFuncInventoryCallback(boost::bind(&RlvGiveToRLVTaskOffer::onOfferCompleted, this, _1)));
}