mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
Fixed bug where calling SimpleListProperty.prototype.remove with an argument that did not exist in the list would corrupt the list.
Caused by not checking the return value of Array.prototype.indexOf.
This commit is contained in:
parent
089f450847
commit
6fc543bdff
@ -98,14 +98,17 @@ export class SimpleListProperty<T> extends AbstractListProperty<T>
|
|||||||
remove(...values: T[]): void {
|
remove(...values: T[]): void {
|
||||||
for (const value of values) {
|
for (const value of values) {
|
||||||
const index = this.values.indexOf(value);
|
const index = this.values.indexOf(value);
|
||||||
this.values.splice(index, 1);
|
|
||||||
|
|
||||||
this.finalize_update({
|
if (index > -1) {
|
||||||
type: ListChangeType.ListChange,
|
this.values.splice(index, 1);
|
||||||
index,
|
|
||||||
removed: [value],
|
this.finalize_update({
|
||||||
inserted: [],
|
type: ListChangeType.ListChange,
|
||||||
});
|
index,
|
||||||
|
removed: [value],
|
||||||
|
inserted: [],
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user