Skip to content

Commit 0bdf092

Browse files
committed
- Bump Version Number
- Resolve Cache Queue sticking issue. - Resolve issue with tab selection not being properly switched off when changing from a metadata supporting item to one which does not.
1 parent 59c3a1c commit 0bdf092

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

xivModdingFramework/Cache/XivCache.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2189,7 +2189,11 @@ private static void ProcessDependencyQueue(object sender, DoWorkEventArgs e)
21892189
if (file != null)
21902190
{
21912191
level = XivDependencyGraph.GetDependencyLevel(file);
2192-
if (level == XivDependencyLevel.Invalid) continue;
2192+
if (level == XivDependencyLevel.Invalid)
2193+
{
2194+
RemoveFromChildQueue(file);
2195+
continue;
2196+
}
21932197

21942198
try
21952199
{
@@ -2221,7 +2225,11 @@ private static void ProcessDependencyQueue(object sender, DoWorkEventArgs e)
22212225
else
22222226
{
22232227
level = XivDependencyGraph.GetDependencyLevel(file);
2224-
if (level == XivDependencyLevel.Invalid) continue;
2228+
if (level == XivDependencyLevel.Invalid)
2229+
{
2230+
RemoveFromParentQueue(file);
2231+
continue;
2232+
}
22252233

22262234
try
22272235
{

0 commit comments

Comments
 (0)