mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-11 16:16:48 +01:00
2e7054cb68
* Implement Settings->General->"Ask Before" and add "Ask Before Posting Without Alt Text" IOS-166 * Implement Alt Missing Alert for Status Edits (IOS-166) * Fix status edit composes duplicate message * Show (or don't) the "Really delete post?" Alert based on the User's preference (IOS-166) * Implement alert for boost/unboost (IOS-166) * Begin implementing "Default Post Language"-Setting (IOS-166) * Show "Unfollow @user?" Alert (IOS-166) * Merge conflict fixes for IOS-166 * Implement default post language setting (IOS-166) * Fix follow button state not updated correctly (IOS-166) * Add PR feedback (IOS-166) * Improve default language cell style (IOS-166) * Fix language filter broken (IOS-166)
15 lines
189 B
Swift
15 lines
189 B
Swift
//
|
|
// AppError.swift
|
|
//
|
|
//
|
|
// Created by MainasuK on 2022-8-8.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum AppError: Error {
|
|
case badRequest
|
|
case badAuthentication
|
|
case unexpected
|
|
}
|