You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do you provoke this? If this is indeed recursive, wouldn't the recursion stop at the second iteration because this.title !== value would return false?
@tsmaeder Since the getter of this.title accesses _title (which never changes) it doesn't stop at the second iteration. It should indeed lead to an infinite recursion.
This line creates an unintended infinite recursion when trying to set title of a webview.
theia/packages/plugin-ext/src/plugin/webview-views.ts
Line 171 in 81dd3ba
should use this._title when comparing and assigning within get/set function
The text was updated successfully, but these errors were encountered: