Also look for pitch when there is no kanji

Julien LepillerSun Jul 18 20:39:04+0200 2021

a70a153

Also look for pitch when there is no kanji

app/src/main/java/eu/lepiller/nani/dictionary/WadokuPitchDictionary.java

9090
                    }
9191
                }
9292
            }
93+
94+
            if(kanjis.size() == 0) {
95+
                for(Result.Reading read: readings) {
96+
                    List<String> innerReadings = read.getReadings();
97+
                    for(String reading: innerReadings) {
98+
                        String pitch = findPitch("", reading, file);
99+
                        if(pitch != null) {
100+
                            Log.d(TAG, "Found " + pitch);
101+
                            read.addPitch(pitch);
102+
                        }
103+
                    }
104+
                }
105+
            }
93106
        } catch (FileNotFoundException e) {
94107
            e.printStackTrace();
95108
        } catch (IOException e) {