diff --git a/Cesium3DTilesSelection/src/TilesetHeightQuery.cpp b/Cesium3DTilesSelection/src/TilesetHeightQuery.cpp index e7ab3475a..ce3d3e6be 100644 --- a/Cesium3DTilesSelection/src/TilesetHeightQuery.cpp +++ b/Cesium3DTilesSelection/src/TilesetHeightQuery.cpp @@ -274,9 +274,7 @@ bool TilesetHeightRequest::tryCompleteHeightRequest( // before we can load it again. contentManager.unloadTileContent(*pTile); tileStillNeedsLoading = true; - } else if ( - state == TileLoadState::Unloaded || - state == TileLoadState::FailedTemporarily) { + } else if (state <= TileLoadState::ContentLoading) { tilesNeedingLoading.insert(pTile); tileStillNeedsLoading = true; }