diff options
| author | 2024-11-25 15:33:21 +0000 | |
|---|---|---|
| committer | 2024-11-25 15:33:21 +0000 | |
| commit | a444adee979375ed5d7af38346029a3d90bc77eb (patch) | |
| tree | 8ff7fedc012bdf242451c4d2c4a22c0a714b9b8f /internal/processing/workers | |
| parent | [chore] Bump tooling versions, bump go -> v1.23.0 (#3258) (diff) | |
| download | gotosocial-a444adee979375ed5d7af38346029a3d90bc77eb.tar.xz | |
[bugfix] notification types missing from link header (#3571)
* ensure notification types get included in link header query for notifications
* fix type query keys
Diffstat (limited to 'internal/processing/workers')
| -rw-r--r-- | internal/processing/workers/surfacenotify_test.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/workers/surfacenotify_test.go b/internal/processing/workers/surfacenotify_test.go index dc445d0ac..52ee89e8b 100644 --- a/internal/processing/workers/surfacenotify_test.go +++ b/internal/processing/workers/surfacenotify_test.go @@ -89,7 +89,7 @@ func (suite *SurfaceNotifyTestSuite) TestSpamNotifs() {  	notifs, err := testStructs.State.DB.GetAccountNotifications(  		gtscontext.SetBarebones(ctx),  		targetAccount.ID, -		"", "", "", 0, nil, nil, +		nil, nil, nil,  	)  	if err != nil {  		suite.FailNow(err.Error())  | 
