I ran into a very annoying issue with Bambu Lab Studio and its cloud sync feature.
Old profiles were repeatedly downloaded from the cloud and overwrote my recently updated settings — even though they had been saved correctly.
If you experience the same, check the corresponding .json files for your filament or process settings.
In my case, the problem was caused by invalid entries like these:
"default_acceleration": [
"5000",
"1200",
"nil",
"1200"
],
"gap_infill_speed": [
"80",
"40",
"nil",
"40"
],
Those "nil" values seem to make the sync go haywire, forcing Studio to restore outdated settings from the cloud for any section containing them.
How I Fixed It
- Turn off cloud sync
Go to Settings → Cloud Sync and temporarily disable automatic synchronization. - Open the affected .json file
Use a text editor and replace inconsistent entries with uniform values, for example:
"default_acceleration": [
"1200",
"1200",
"1200",
"1200"
],
"gap_infill_speed": [
"40",
"40",
"40",
"40"
],
- Save the file and reopen Bambu Lab Studio
- Re-enable cloud sync
Once done, enable cloud synchronization again. - Verify the fix
Open the corresponding .info file for that profile and look for an updated timestamp, for example:
sync_info =
updated_time = 1760580704
Not sure why this happened — the files were never edited manually — but the revert occurred silently in the background.
I only noticed it after a 14-hour print failed because all speed settings were suddenly back to defaults, far beyond what the filament could handle.
Hopefully this helps anyone else running into the same frustrating issue.
EDIT: This seems to occur when changing any of the standard speed fields, on every profile I done this I get a corrupted .json-file