1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 06:12:05 +01:00

Fix IndexOutOfBoundsException in FormField.getFirstValue()

Fixes SMACK-838.
This commit is contained in:
Florian Schmaus 2018-10-14 12:07:51 +02:00
parent 89c9a41863
commit ec982f65e2

View file

@ -261,12 +261,14 @@ public class FormField implements NamedElement {
*/ */
public String getFirstValue() { public String getFirstValue() {
CharSequence firstValue; CharSequence firstValue;
synchronized (values) { synchronized (values) {
if (values.isEmpty()) {
return null;
}
firstValue = values.get(0); firstValue = values.get(0);
} }
if (firstValue == null) {
return null;
}
return firstValue.toString(); return firstValue.toString();
} }