aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/Terminal.vb
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS/Terminal.vb')
-rw-r--r--ShiftOS/Terminal.vb8
1 files changed, 4 insertions, 4 deletions
diff --git a/ShiftOS/Terminal.vb b/ShiftOS/Terminal.vb
index d748bce..2285bc3 100644
--- a/ShiftOS/Terminal.vb
+++ b/ShiftOS/Terminal.vb
@@ -581,12 +581,12 @@ Public Class Terminal
End Sub
Private Sub DoCommand()
- If command Like "speak_infobox '*' '*'" Then
- Dim findwords() As String = command.Split("'")
+ If command Like "speak_infobox ""*"" ""*""" Then
+ Dim findwords() As String = command.Split("""")
Helper.speakInfoBox(findwords(1), findwords(3))
End If
- If command Like "speak '*'" Then
- Dim findwords() As String = command.Split("'")
+ If command Like "speak ""*""" Then
+ Dim findwords() As String = command.Split("""")
If Not findwords(1) = "" Then
Helper.speak(findwords(1))
Else