fix: 404 auf allen Query-Endpoints — pulls ManaCore v1.0.1 fix
Root-Cause des "0 Karten in jedem Deck" + "Server-Fehler (404)"- Bug: ManaCore.AuthenticatedTransport.request(path:) hat URL.appending(path:) verwendet, das `?` in Query-Strings als Pfad- Component encoded → `?deck_id=X` → `%3Fdeck_id=X` → Server-Route matched nicht → 404. Betroffene Endpoints (alle hatten still failed): - /api/v1/cards?deck_id=X → cardCount immer 0 - /api/v1/reviews/due?deck_id=X → dueCount immer 0, "Karten lernen" immer disabled - /api/v1/marketplace/decks?q=...&sort=... → Browse-Filter wirkungslos - /api/v1/decks?forked_from_marketplace=true → Inbox-Filter wirkungslos memoro-native nicht betroffen weil dort keine Query-Endpoints. Fix in ManaCore v1.0.1 (Commit 74aee8d): String-basierte URL- Konstruktion. CardsAPI bleibt unverändert. Build 5 → 6, in Simulator verifiziert mit live-API-Auth-Roundtrip. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e8b898a51d
commit
0b0872c8c0
1 changed files with 3 additions and 3 deletions
|
|
@ -55,7 +55,7 @@ targets:
|
||||||
path: Sources/Resources/Info.plist
|
path: Sources/Resources/Info.plist
|
||||||
properties:
|
properties:
|
||||||
CFBundleShortVersionString: "0.1.0"
|
CFBundleShortVersionString: "0.1.0"
|
||||||
CFBundleVersion: "5"
|
CFBundleVersion: "6"
|
||||||
CFBundleDevelopmentRegion: de
|
CFBundleDevelopmentRegion: de
|
||||||
CFBundleDisplayName: Cardecky
|
CFBundleDisplayName: Cardecky
|
||||||
LSApplicationCategoryType: "public.app-category.education"
|
LSApplicationCategoryType: "public.app-category.education"
|
||||||
|
|
@ -111,7 +111,7 @@ targets:
|
||||||
properties:
|
properties:
|
||||||
CFBundleDisplayName: Als Karte speichern
|
CFBundleDisplayName: Als Karte speichern
|
||||||
CFBundleShortVersionString: "0.1.0"
|
CFBundleShortVersionString: "0.1.0"
|
||||||
CFBundleVersion: "5"
|
CFBundleVersion: "6"
|
||||||
NSExtension:
|
NSExtension:
|
||||||
NSExtensionPointIdentifier: com.apple.share-services
|
NSExtensionPointIdentifier: com.apple.share-services
|
||||||
NSExtensionPrincipalClass: $(PRODUCT_MODULE_NAME).ShareViewController
|
NSExtensionPrincipalClass: $(PRODUCT_MODULE_NAME).ShareViewController
|
||||||
|
|
@ -144,7 +144,7 @@ targets:
|
||||||
properties:
|
properties:
|
||||||
CFBundleDisplayName: Cardecky Widget
|
CFBundleDisplayName: Cardecky Widget
|
||||||
CFBundleShortVersionString: "0.1.0"
|
CFBundleShortVersionString: "0.1.0"
|
||||||
CFBundleVersion: "5"
|
CFBundleVersion: "6"
|
||||||
NSExtension:
|
NSExtension:
|
||||||
NSExtensionPointIdentifier: com.apple.widgetkit-extension
|
NSExtensionPointIdentifier: com.apple.widgetkit-extension
|
||||||
entitlements:
|
entitlements:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue