Fixed feature treatment in CMC morpho

Change-Id: I242027df72ac9cc67fa4b1845308ff0b16ea8caa
diff --git a/lib/KorAP/XML/Annotation/CMC/Morpho.pm b/lib/KorAP/XML/Annotation/CMC/Morpho.pm
index 94fd291..35335cd 100644
--- a/lib/KorAP/XML/Annotation/CMC/Morpho.pm
+++ b/lib/KorAP/XML/Annotation/CMC/Morpho.pm
@@ -13,9 +13,14 @@
 
       my $content = $token->hash->{fs}->{f};
 
+      my $array = $content->{fs}->{f};
+
+      # In case there is only a lemma/pos ...
+      $array = ref $array ne 'ARRAY' ? [$array] : $array;
+
       my $found;
 
-      foreach my $f (@{$content->{fs}->{f}}) {
+      foreach my $f (@$array) {
 
         # pos tag
         if (($f->{-name} eq 'pos') &&