Skip to content

Commit

Permalink
Merge pull request #127 from hideki0403/dev-kakurega
Browse files Browse the repository at this point in the history
release: v2024.2.0-kakurega.1.30.1
  • Loading branch information
hideki0403 authored Feb 28, 2024
2 parents 6c2447d + 376ef19 commit f25ddc8
Show file tree
Hide file tree
Showing 10 changed files with 357 additions and 131 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,7 @@ jobs:
- name: create tag
if: steps.check-tag.outputs.exists == 'false'
run: |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
git tag -a v${{ steps.package-version.outputs.current-version }} -m "release: v${{ steps.package-version.outputs.current-version }}"
git push origin v${{ steps.package-version.outputs.current-version }}
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish Docker image
on:
push:
tags:
- '*'
- '*'
workflow_dispatch:

env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2024.2.0-kakurega.1.30.0",
"version": "2024.2.0-kakurega.1.30.1",
"codename": "nasubi",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/backend/src/core/NotificationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ export class NotificationService implements OnApplicationShutdown {

const packed = await this.notificationEntityService.pack(notification, notifieeId, {});

if (packed == null) return null;

// Publish notification event
this.globalEventService.publishMainStream(notifieeId, 'notification', packed);

Expand Down
Loading

0 comments on commit f25ddc8

Please sign in to comment.