mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
anilibria: fix cs
This commit is contained in:
@@ -208,7 +208,8 @@ namespace Jackett.Common.Utils
|
|||||||
{
|
{
|
||||||
yield return index;
|
yield return index;
|
||||||
index = source.IndexOf(value, index + 1);
|
index = source.IndexOf(value, index + 1);
|
||||||
};
|
}
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IEnumerable<int> AllIndexesOf(this string source, string value)
|
public static IEnumerable<int> AllIndexesOf(this string source, string value)
|
||||||
@@ -218,7 +219,8 @@ namespace Jackett.Common.Utils
|
|||||||
{
|
{
|
||||||
yield return index;
|
yield return index;
|
||||||
index = source.IndexOf(value, index + value.Length);
|
index = source.IndexOf(value, index + value.Length);
|
||||||
};
|
}
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Reference in New Issue
Block a user