Skip to content

Commit

Permalink
🐛 version 0.9.2
Browse files Browse the repository at this point in the history
fix ChannelType
resolve #13
  • Loading branch information
RF-Tar-Railt committed Feb 18, 2024
1 parent a4e54d3 commit ef10946
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nonebot/adapters/satori/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

class ChannelType(IntEnum):
TEXT = 0
VOICE = 1
DIRECT = 1
CATEGORY = 2
DIRECT = 3
VOICE = 3


class Channel(BaseModel):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "nonebot-adapter-satori"
version = "0.9.1"
version = "0.9.2"
description = "Satori Protocol Adapter for Nonebot2"
authors = [
{name = "RF-Tar-Railt",email = "[email protected]"},
Expand Down

0 comments on commit ef10946

Please sign in to comment.