handle more interactions like uploading and single asset links

This commit is contained in:
bwees
2025-08-01 08:21:35 -05:00
parent c8c6f86518
commit cc9ec29c83
10 changed files with 335 additions and 181 deletions
@@ -158,7 +158,6 @@ class TimelineService {
BaseAsset getRandomAsset() => _buffer.elementAt(math.Random().nextInt(_buffer.length));
BaseAsset getAsset(int index) {
print("buffer len: " + _buffer.length.toString());
if (!hasRange(index, 1)) {
throw RangeError(
'TimelineService::getAsset Index $index not in buffer range [$_bufferOffset, ${_bufferOffset + _buffer.length})',