From c3d632274ac0280bb3ba36f610156ec06c6999d3 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sat, 24 May 2025 16:50:50 -0600 Subject: [PATCH] Ensure we conform to the API specification as closely as possible --- module/Apps/StatsViewer.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/Apps/StatsViewer.mjs b/module/Apps/StatsViewer.mjs index bfa8447..14c61cd 100644 --- a/module/Apps/StatsViewer.mjs +++ b/module/Apps/StatsViewer.mjs @@ -84,11 +84,11 @@ export class StatsViewer extends HandlebarsApplicationMixin(ApplicationV2) { // #endregion Instance Data // #region Lifecycle - async render({ userUpdated, ...opts } = {}) { + async render({ userUpdated, ...opts } = {}, _options) { if (userUpdated && !this._selectedUsers.includes(userUpdated)) { return; } - await super.render(opts); + await super.render(opts, _options); }; async _onFirstRender(context, options) {