Skip to content

Commit

Permalink
Corrected the max number of message
Browse files Browse the repository at this point in the history
  • Loading branch information
reav89 authored Feb 23, 2024
1 parent ce481aa commit fd64005
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public interface IChatService
```

To implement this service we'll use a `List<string>` to store the chat history,
and remove messages from the start of the list whenever there are more than 100 in the queue.
and remove messages from the start of the list whenever there are more than 50 in the queue.
We'll use the `lock()` statement to ensure thread safety.

```razor {: .line-numbers}
Expand Down

0 comments on commit fd64005

Please sign in to comment.