diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2020-12-18 20:45:04 +0000 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2020-12-18 20:45:04 +0000 |
commit | d9ba2a8100f1fa6b6844f58b884595c123770a8a (patch) | |
tree | 12bd3cabe13c8baebab2e15d5c5b91dc6a1b10f6 /indra/newview/llfavoritesbar.cpp | |
parent | 9156c22f73b6706a3f480d0fd72ed04a7de8187b (diff) |
SL-14570 - error messages, avoid a couple of warnings caused by attempts to create folders before inventory is loaded
Diffstat (limited to 'indra/newview/llfavoritesbar.cpp')
-rw-r--r-- | indra/newview/llfavoritesbar.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/indra/newview/llfavoritesbar.cpp b/indra/newview/llfavoritesbar.cpp index 347997a69a..d258bea519 100644 --- a/indra/newview/llfavoritesbar.cpp +++ b/indra/newview/llfavoritesbar.cpp @@ -1859,9 +1859,17 @@ BOOL LLFavoritesOrderStorage::saveFavoritesRecord(bool pref_changed) pref_changed |= mRecreateFavoriteStorage; mRecreateFavoriteStorage = false; + // Can get called before inventory is done initializing. + if (!gInventory.isInventoryUsable()) + { + return FALSE; + } + LLUUID favorite_folder= gInventory.findCategoryUUIDForType(LLFolderType::FT_FAVORITE); if (favorite_folder.isNull()) - return FALSE; + { + return FALSE; + } LLInventoryModel::item_array_t items; LLInventoryModel::cat_array_t cats; |