Fix Translations file path

This commit is contained in:
runebaas 2020-08-13 17:42:33 +02:00
parent 97ad54df9e
commit bd117e2595
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6

View file

@ -32,7 +32,7 @@ namespace Geekbot.Core.Localization
try
{
// Read the file
var translationFile = File.ReadAllText(Path.GetFullPath("./Lib/Localization/Translations.yml"));
var translationFile = File.ReadAllText(Path.GetFullPath("./Localization/Translations.yml"));
// Deserialize
var input = new StringReader(translationFile);