mirror of
https://github.com/osukey/osukey.git
synced 2025-05-24 15:07:20 +09:00
Fix incorrect disposal
This commit is contained in:
parent
b1b6723826
commit
40cd998f99
@ -269,14 +269,8 @@ namespace osu.Game.Database
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private string? getRulesetShortNameFromLegacyID(long rulesetId)
|
private string? getRulesetShortNameFromLegacyID(long rulesetId) =>
|
||||||
{
|
efContextFactory?.Get().RulesetInfo.First(r => r.ID == rulesetId)?.ShortName;
|
||||||
if (efContextFactory == null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
using (var efContext = efContextFactory.Get())
|
|
||||||
return efContext.RulesetInfo.First(r => r.ID == rulesetId)?.ShortName;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Flush any active contexts and block any further writes.
|
/// Flush any active contexts and block any further writes.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user