mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Add URL as valid item for RC
This commit is contained in:
@@ -3404,6 +3404,11 @@ namespace SabreTools.Helper
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// If we have a URL
|
||||||
|
else if (line.ToLowerInvariant().StartsWith("url="))
|
||||||
|
{
|
||||||
|
Url = (String.IsNullOrEmpty(Url) ? line.Split('=')[1] : Url);
|
||||||
|
}
|
||||||
// If we have a comment
|
// If we have a comment
|
||||||
else if (line.ToLowerInvariant().StartsWith("comment="))
|
else if (line.ToLowerInvariant().StartsWith("comment="))
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user