[PR #3879] [MERGED] fix: Invalid refresh token #5928

Closed
opened 2026-03-23 22:20:57 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3879
Author: @appflowy
Created: 11/6/2023
Status: Merged
Merged: 11/8/2023
Merged by: @appflowy

Base: mainHead: invalid_refresh_token


📝 Commits (7)

📊 Changes

23 files changed (+332 additions, -124 deletions)

View changed files

📝 frontend/appflowy_flutter/dev.env (+3 -3)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+100 -17)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+9 -9)
📝 frontend/rust-lib/Cargo.lock (+107 -24)
📝 frontend/rust-lib/Cargo.toml (+10 -9)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+1 -0)
📝 frontend/rust-lib/flowy-error/src/impl_from/cloud.rs (+1 -2)
📝 frontend/rust-lib/flowy-folder2/src/manager.rs (+4 -3)
📝 frontend/rust-lib/flowy-folder2/src/user_default.rs (+8 -2)
📝 frontend/rust-lib/flowy-folder2/src/view_operation.rs (+18 -8)
📝 frontend/rust-lib/flowy-server/src/af_cloud/server.rs (+23 -17)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/folder.rs (+6 -8)
📝 frontend/rust-lib/flowy-server/src/server.rs (+10 -2)
📝 frontend/rust-lib/flowy-server/src/supabase/api/folder.rs (+7 -0)
📝 frontend/rust-lib/flowy-server/src/supabase/api/user.rs (+1 -1)
📝 frontend/rust-lib/flowy-sqlite/src/kv/kv.rs (+1 -1)
📝 frontend/rust-lib/flowy-sqlite/src/lib.rs (+4 -4)
📝 frontend/rust-lib/flowy-sqlite/src/sqlite_impl/conn_ext.rs (+2 -1)
📝 frontend/rust-lib/flowy-sqlite/src/sqlite_impl/database.rs (+5 -3)
📝 frontend/rust-lib/flowy-sqlite/src/sqlite_impl/errors.rs (+0 -0)

...and 3 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/3879 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 11/6/2023 **Status:** ✅ Merged **Merged:** 11/8/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `invalid_refresh_token` --- ### 📝 Commits (7) - [`361f3f4`](https://github.com/AppFlowy-IO/AppFlowy/commit/361f3f41f3ee25a3feec510369ab5daf583c8182) chore: update client api - [`397bf60`](https://github.com/AppFlowy-IO/AppFlowy/commit/397bf6073038cc0f25941c80dec654bcf7aa9797) chore: update client api - [`4bf6112`](https://github.com/AppFlowy-IO/AppFlowy/commit/4bf61122f96d02d1067a0a2827cc23e74f47fff1) chore: update client api - [`56cd7c0`](https://github.com/AppFlowy-IO/AppFlowy/commit/56cd7c0d50fc826a933e2c1e06b60dd62f9e822e) chore: fix clippy - [`d7f4a72`](https://github.com/AppFlowy-IO/AppFlowy/commit/d7f4a7226c1d1b58b4a7521bdc64d8359e1109d4) chore: fix clippy - [`339d0cf`](https://github.com/AppFlowy-IO/AppFlowy/commit/339d0cf988d7c6a605b3431aea6556bbbc68e754) ci: fix - [`8cf2cac`](https://github.com/AppFlowy-IO/AppFlowy/commit/8cf2cac3efdc81aed0a179a8970ff242381d5cc2) chore: update client api ### 📊 Changes **23 files changed** (+332 additions, -124 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/dev.env` (+3 -3) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+100 -17) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/Cargo.lock` (+107 -24) 📝 `frontend/rust-lib/Cargo.toml` (+10 -9) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-error/src/impl_from/cloud.rs` (+1 -2) 📝 `frontend/rust-lib/flowy-folder2/src/manager.rs` (+4 -3) 📝 `frontend/rust-lib/flowy-folder2/src/user_default.rs` (+8 -2) 📝 `frontend/rust-lib/flowy-folder2/src/view_operation.rs` (+18 -8) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/server.rs` (+23 -17) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/folder.rs` (+6 -8) 📝 `frontend/rust-lib/flowy-server/src/server.rs` (+10 -2) 📝 `frontend/rust-lib/flowy-server/src/supabase/api/folder.rs` (+7 -0) 📝 `frontend/rust-lib/flowy-server/src/supabase/api/user.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-sqlite/src/kv/kv.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-sqlite/src/lib.rs` (+4 -4) 📝 `frontend/rust-lib/flowy-sqlite/src/sqlite_impl/conn_ext.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-sqlite/src/sqlite_impl/database.rs` (+5 -3) 📝 `frontend/rust-lib/flowy-sqlite/src/sqlite_impl/errors.rs` (+0 -0) _...and 3 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:20:57 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#5928
No description provided.