Update readme

This commit is contained in:
privet.fun 2023-06-01 14:55:50 -07:00
parent 39cd206390
commit c9da12a77d
2 changed files with 2 additions and 1 deletions

View file

@ -113,6 +113,7 @@ This extension is currently being actively developed. For communication, please
* 1.0.3 June 1, 2023
- bumped php requirements to >= 7.4
- Comma removed, reported by [Vlad__](https://www.phpbbguru.net/community/viewtopic.php?p=561224#p561224)
* 1.0.2 June 1, 2023
- Only apply `utf8_encode_ucr` if present, reported by [Vlad__](https://www.phpbbguru.net/community/viewtopic.php?p=561158#p561158)

View file

@ -163,7 +163,7 @@ class chatgpt extends AIController
if (!empty($this->cfg->prefix)) {
array_unshift(
$messages,
['role' => 'system', 'content' => $this->cfg->prefix],
['role' => 'system', 'content' => $this->cfg->prefix]
);
}