Skip to content
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.

Commit

Permalink
TelegramBot Readline Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kimbtech committed Oct 12, 2020
1 parent b73c7bb commit 1522d65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/CLIOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public function readline(string $question, ?string $color = null, int $ind = 0)
self::$readlineUsed[$question] = 0;
}
if(isset($val[self::$readlineUsed[$question]])){
$val = self::$readlineUsed[$question];
$val = $val[self::$readlineUsed[$question]];
}
self::$readlineUsed[$question]++;
}
Expand Down
2 changes: 1 addition & 1 deletion core/Utilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
class Utilities {

const VERSION = 'v1.0.9';
const VERSION = 'v1.0.10';

const DEFAULT_LINE_LENGTH = 125;

Expand Down

0 comments on commit 1522d65

Please sign in to comment.