mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-06-17 12:08:54 +00:00
fix(controller): adjust continue statement placement in stream loop
Move the continue statement outside the conditional block to ensure correct loop control flow. The previous nesting could cause unintended skipping or processing of stream iterations based on condition evaluation, potentially leading to logic errors in stream handling.
This commit is contained in:
parent
b00795c464
commit
0f6b048545
@ -187,7 +187,6 @@ namespace LME.Mikai.Controllers
|
|||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
string callUrl = $"{host}/lite/lme_mikai/play?url={HttpUtility.UrlEncode(episode.Url)}&title={HttpUtility.UrlEncode(displayTitle)}";
|
string callUrl = $"{host}/lite/lme_mikai/play?url={HttpUtility.UrlEncode(episode.Url)}&title={HttpUtility.UrlEncode(displayTitle)}";
|
||||||
movieTpl.Append(voice.DisplayName, accsArgs(callUrl), "call");
|
movieTpl.Append(voice.DisplayName, accsArgs(callUrl), "call");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user