Trim mapwithai:options string when longer than 255 characters

Signed-off-by: Taylor Smock <taylor.smock@kaart.com>
pull/1/head
Taylor Smock 2019-12-16 14:42:27 -07:00
rodzic 968ea7dc1f
commit 70e3a7f385
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 625F6A74A3E4311A
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -43,7 +43,9 @@ public class MapWithAIUploadHook implements UploadHook, Destroyable {
.filter(url -> !MapWithAIPreferenceHelper.DEFAULT_MAPWITHAI_API.equalsIgnoreCase(url))
.collect(Collectors.toList())));
}
tags.put("mapwithai:options", sb.toString());
String mapwithaiOptions = sb.toString();
tags.put("mapwithai:options",
mapwithaiOptions.length() > 255 ? mapwithaiOptions.substring(0, 255) : mapwithaiOptions);
}
}