Forráskód Böngészése

Add reasonable default for flag lookup

Kirk Trombley 4 éve
szülő
commit
fc7516c2aa
1 módosított fájl, 3 hozzáadás és 0 törlés
  1. 3 0
      client/src/domain/flagLookup.js

+ 3 - 0
client/src/domain/flagLookup.js

@@ -5,6 +5,9 @@ const asciiOffset = 0x41;
 const flagShift = flagOffset - asciiOffset;
 
 const flagLookup = country => {
+  if (country === null) {
+    return '🌎';
+  }
   const upper = country.toUpperCase();
   const firstChar = upper.charCodeAt(0) + flagShift;
   const secondChar = upper.charCodeAt(1) + flagShift;