Skip to content

Commit

Permalink
Fixed bug!
Browse files Browse the repository at this point in the history
  • Loading branch information
hopto-dot committed Sep 12, 2020
1 parent 94bcd5a commit 4159d4f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Japanese Conjugation Helper/Module1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,10 @@ Module Module1
HTML = Client.DownloadString(New Uri(WordURL))
Dim AddingTemp As String

If HTML.IndexOf("No matches for") <> -1 Then
Console.WriteLine("Looking for similar words...")
End If

If HTML.IndexOf("zen_bar") <> -1 And Anki = False Then
TranslateSentence(Word)
End If
Expand Down Expand Up @@ -525,7 +529,6 @@ Module Module1
Console.Clear()
Console.WriteLine("Which definition would you like details for? Type a number, 0 to cancel.")
Console.WriteLine()
Console.WriteLine()
Dim TotalWordsFound As Integer = 0
For looper = 1 To FoundWords.Length
If IsNothing(FoundWords(looper - 1)) = False Then
Expand Down

0 comments on commit 4159d4f

Please sign in to comment.