File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ require (
99 github.com/rs/zerolog v1.34.0
1010 go.mau.fi/util v0.9.2-0.20251001114608-d99877b9cc10
1111 go.mau.fi/webp v0.2.0
12- go.mau.fi/whatsmeow v0.0.0-20251002120845-b3cd0a5002d4
12+ go.mau.fi/whatsmeow v0.0.0-20251003120353-0091f66a98cc
1313 golang.org/x/image v0.31.0
1414 golang.org/x/net v0.44.0
1515 golang.org/x/sync v0.17.0
Original file line number Diff line number Diff line change @@ -81,8 +81,8 @@ go.mau.fi/util v0.9.2-0.20251001114608-d99877b9cc10 h1:EvX/di02gOriKN0xGDJuQ5mgi
8181go.mau.fi/util v0.9.2-0.20251001114608-d99877b9cc10 /go.mod h1:M0bM9SyaOWJniaHs9hxEzz91r5ql6gYq6o1q5O1SsjQ =
8282go.mau.fi/webp v0.2.0 h1:QVMenHw7JDb4vall5sV75JNBQj9Hw4u8AKbi1QetHvg =
8383go.mau.fi/webp v0.2.0 /go.mod h1:VSg9MyODn12Mb5pyG0NIyNFhujrmoFSsZBs8syOZD1Q =
84- go.mau.fi/whatsmeow v0.0.0-20251002120845-b3cd0a5002d4 h1:uysENrRsp3Ko6LjrOIsNnCT2l3lTibrUkp+CCx1IxG4 =
85- go.mau.fi/whatsmeow v0.0.0-20251002120845-b3cd0a5002d4 /go.mod h1:dvltpCF0rOHbbur25DHbQ3Ovi747z2Pm11S2M7p1T74 =
84+ go.mau.fi/whatsmeow v0.0.0-20251003120353-0091f66a98cc h1:ebVSx8jdPkDiQM/1V2/RA7z/mrIx2PsTjxiBgE51p4I =
85+ go.mau.fi/whatsmeow v0.0.0-20251003120353-0091f66a98cc /go.mod h1:dvltpCF0rOHbbur25DHbQ3Ovi747z2Pm11S2M7p1T74 =
8686go.mau.fi/zeroconfig v0.2.0 h1:e/OGEERqVRRKlgaro7E6bh8xXiKFSXB3eNNIud7FUjU =
8787go.mau.fi/zeroconfig v0.2.0 /go.mod h1:J0Vn0prHNOm493oZoQ84kq83ZaNCYZnq+noI1b1eN8w =
8888golang.org/x/crypto v0.42.0 h1:chiH31gIWm57EkTXpwnqf8qeuMUi0yekh6mT2AvFlqI =
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import (
2424 "sync"
2525 "sync/atomic"
2626
27+ "github.com/lib/pq"
2728 "go.mau.fi/util/dbutil"
2829 "go.mau.fi/util/random"
2930 "go.mau.fi/whatsmeow"
@@ -58,6 +59,10 @@ type WhatsAppConnector struct {
5859 stopMediaEditCacheLoop atomic.Pointer [context.CancelFunc ]
5960}
6061
62+ func init () {
63+ sqlstore .PostgresArrayWrapper = pq .Array
64+ }
65+
6166var (
6267 _ bridgev2.NetworkConnector = (* WhatsAppConnector )(nil )
6368 _ bridgev2.MaxFileSizeingNetwork = (* WhatsAppConnector )(nil )
You can’t perform that action at this time.
0 commit comments