Merge pull request #19077 from KellyThomas/fix-string-extension

mono: Fix index out of range error in string.Extension()
This commit is contained in:
Ignacio Etcheverry
2018-05-21 16:57:41 +02:00
committed by GitHub
@@ -225,7 +225,7 @@ namespace Godot
if (pos < 0)
return instance;
return instance.Substring(pos + 1, instance.Length);
return instance.Substring(pos + 1);
}
// <summary>