mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
Fix storage cell constructor args
When we changed the constructors for the V2 cells with the introduction of V5 format, these call sites didn't get updated. This doesn't seem to be a user-facing bug, and did not affect any releases. This was caught by a compiler upgrade. Issue #2528 Change-Id: I77228d17631ef44a6b85a81b88054790461617bc
This commit is contained in:
@@ -216,8 +216,7 @@ shaka.offline.indexeddb.StorageMechanism = class {
|
||||
return new shaka.offline.indexeddb.V2StorageCell(
|
||||
db,
|
||||
segmentStore,
|
||||
manifestStore,
|
||||
true); // Are keys locked? Yes, this means no new additions.
|
||||
manifestStore);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -240,8 +239,7 @@ shaka.offline.indexeddb.StorageMechanism = class {
|
||||
return new shaka.offline.indexeddb.V2StorageCell(
|
||||
db,
|
||||
segmentStore,
|
||||
manifestStore,
|
||||
false); // Are keys locked? No, this means we can add new entries.
|
||||
manifestStore);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user