MMashDiv

NFT Marketplace 6.2.4

Pre-release

This version isn’t published on updates.mashdiv.com yet — the notes are available to preview, but it can’t be downloaded until it’s released.

24 August 2026

ADMINDISPUTESBUG-FIXES

NFT Marketplace v6.2.4

Release Date: August 24, 2026 Tags: ADMIN, DISPUTES, BUG-FIXES

Overview

The admin dispute page has never worked. Not "worked badly" — it rendered its error boundary and the words "Something went wrong!", on every visit, for every operator, since it shipped.

A dispute is a customer telling you a trade went wrong and asking you to decide between two people. Every one of those cases was still being recorded and still sitting in the database waiting for a decision; the only way to reach any of them was through the API directly.

Requires Core v6.7.1.

Update Instructions

pnpm updator

Ship the frontend build afterwards. There is no backend change, no database change and no migration.

  • Open your dispute list once the page is up. If you have been running the marketplace with disputes enabled, there may be cases in it that nobody has ever been able to look at.

Fixed

The dispute list rendered an error instead of the disputes

The endpoint answers with the paginated envelope every admin list uses — a set of items plus a page count — and the page assigned that envelope straight into the place the list itself belongs. The first attempt to walk the list therefore walked an object that is not a list, which throws before anything is drawn, and the page's error boundary caught it and showed the generic failure message.

Nothing about the message said which page had failed or why, so the page looked like a server problem rather than a defect in one line of it.

  • Fixed the dispute list reading its own response. Disputes now load, filter and open as the rest of the admin lists do.