Skip to content

Commit

Permalink
判定を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
o-tr committed Nov 24, 2024
1 parent 3558c1a commit f85103b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/jp.ootr.ImageSlide/Scripts/31_UISourceList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class UISourceList : LogicPreloadUrls

protected void AddUrl([CanBeNull]VRCUrl url, URLType type, [CanBeNull]string options)
{
if (url == null || url.ToString().IsValidUrl())
if (url == null || !url.ToString().IsValidUrl())
{
ConsoleError("invalid url", _uiSourceListPrefix);
return;
Expand Down

0 comments on commit f85103b

Please sign in to comment.