Skip to content

Commit c0b8247

Browse files
committed
Fix regression in buildModuleUrl.
A reference to `baseUrlString` was incorrectly changed to `baseUrl` by #1026.
1 parent ec4acb3 commit c0b8247

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Core/buildModuleUrl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ define([
3838
baseUrlString = getBaseUrlFromCesiumScript();
3939
}
4040

41-
if (!defined(baseUrl)) {
41+
if (!defined(baseUrlString)) {
4242
throw new DeveloperError('Unable to determine Cesium base URL automatically, try defining a global variable called CESIUM_BASE_URL.');
4343
}
4444

0 commit comments

Comments
 (0)