Skip to content

Commit

Permalink
Fix self-assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
azrogers committed Jan 9, 2025
1 parent ede6c52 commit b7e985a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/CesiumRuntime/Private/Cesium3DTileset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ void ACesium3DTileset::SetRequestHeaders(
const TMap<FString, FString>& InRequestHeaders) {
if (!CompareMaps(InRequestHeaders, this->RequestHeaders)) {
this->DestroyTileset();
this->RequestHeaders = RequestHeaders;
this->RequestHeaders = InRequestHeaders;
}
}

Expand Down

0 comments on commit b7e985a

Please sign in to comment.