static/emscripten/uno.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 0dd0a928b3abcbb50895f6e7716fa24876a147b5 Author: Stephan Bergmann <stephan.bergm...@allotropia.de> AuthorDate: Mon Jun 17 13:50:11 2024 +0200 Commit: Stephan Bergmann <stephan.bergm...@allotropia.de> CommitDate: Mon Jun 17 16:24:21 2024 +0200 Fix thinko re JS for...in loop Change-Id: I31647952090224e3195afc636613d1ae56ecb10e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168995 Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de> Tested-by: Jenkins diff --git a/static/emscripten/uno.js b/static/emscripten/uno.js index d728a27edc21..fd3b77192d03 100644 --- a/static/emscripten/uno.js +++ b/static/emscripten/uno.js @@ -37,7 +37,7 @@ Module.unoObject = function(interfaces, obj) { obj.release = function() { if (--obj.impl_refcount === 0) { for (const i in obj.impl_interfaces) { - i.delete(); + obj.impl_interfaces[i].delete(); } obj.impl_types.delete(); obj.impl_implementationId.delete();