Skip to content

Commit

Permalink
Fix AirdropBot upgrade (2nd attempt) (#6592)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles authored Oct 16, 2024
1 parent 0cb1436 commit 29d8a44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions backend/canisters/airdrop_bot/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed

- Fix AirdropBot upgrade ([#6591](https://github.com/open-chat-labs/open-chat/pull/6591))
- Fix AirdropBot upgrade (2nd attempt) ([#6592](https://github.com/open-chat-labs/open-chat/pull/6592))

## [[2.0.1314](https://github.com/open-chat-labs/open-chat/releases/tag/v2.0.1314-airdrop_bot)] - 2024-09-02

Expand Down
2 changes: 1 addition & 1 deletion backend/canisters/airdrop_bot/impl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct Data {
pub avatar: Timestamped<Option<Document>>,
pub airdrops: Airdrops,
pub channels_joined: HashSet<(CommunityId, ChannelId)>,
#[serde(default = "default_pending_actions_queue")]
#[serde(skip_deserializing, default = "default_pending_actions_queue")]
pub pending_actions_queue: TimerJobQueue<Action>,
pub rng_seed: [u8; 32],
pub test_mode: bool,
Expand Down

0 comments on commit 29d8a44

Please sign in to comment.