I get an error when I load stream
Error: HTTP request to 'https://ceramic-karatdao.hirenodes.io/api/v0/streams/kjzl6cwe1jw146cptvrbjfs8lpez6cmn63dbusxl3p9zriideqc6dwnzu0qv7ql?sync=0' failed with status '': {"error":"CACAO expired: Commit bagcqcerafnecomaw53dudwgtjk242va3fuvvyn2qigwrmq24s7wxhkq6glwq of Stream kjzl6cwe1jw146cptvrbjfs8lpez6cmn63dbusxl3p9zriideqc6dwnzu0qv7ql has a CACAO that expired at 1689042166. Loading the stream with 'sync: SyncOptions.ALWAYS_SYNC' will restore the stream to a usable state, by discarding the invalid commits (this means losing the data from those invalid writes!)"}
I load stream by following code
import { TileDocument } from "@ceramicnetwork/stream-tile";
TileDocument.load(client, url)
package version
"@ceramicnetwork/http-client": "^2.23.0",
"@ceramicnetwork/stream-tile": "^2.22.0",
I create stream by following code
import { TileDocument } from "@ceramicnetwork/stream-tile";
const conditionStream = await TileDocument.TileDocument.create(
ceramic,
data,
{
family: 'Karat Network',
tags: ['condition'],
}
);
package versiion
"@ceramicnetwork/http-client": "^2.21.0",
"@ceramicnetwork/stream-tile": "^2.20.0",