1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-12 08:27:19 +08:00
Bartłomiej Dach 0d2a47167c
Fix crash on calculating playlist duration when rate-changing mods are present
Regressed in https://github.com/ppy/osu/pull/28399.

To reproduce, enter a playlist that has an item with a rate-changing mod
(rather than create it yourself).

This is happening because `APIRuleset` has `CreateInstance()`
unimplemented:

    b4cefe0cc2/osu.Game/Online/API/Requests/Responses/APIBeatmap.cs (L159)

and only triggers when the playlist items in question originate from
web.

This is why it is bad to have interface implementations throw outside of
maybe mock implementations for tests. `CreateInstance()` is a scourge
elsewhere in general, we need way less of it in the codebase (because
while convenient, it's also problematic to implement in online contexts,
and also expensive because reflection).
2024-06-25 11:28:10 +02:00
..
2024-05-30 17:45:32 +09:00
2024-02-29 01:21:17 +03:00
2022-11-27 00:00:27 +09:00
2022-11-02 11:44:16 +09:00
2023-11-16 20:39:23 +09:00
2022-11-02 13:16:34 +09:00
2022-11-27 00:00:27 +09:00