Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4610,7 +4610,7 @@ paths:
description: |
Scratch project file, such as .sb2, .sb3, or project zip. Form field name must be `file`.

Maximum size is 64 MiB.
Maximum size is 128 MiB.
type: string
format: binary
responses:
Expand Down
2 changes: 1 addition & 1 deletion spx-gui/src/apis/project-conversion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { DefaultException } from '@/utils/exception'
import { client } from './common'
import { humanizeFileSize } from '@/utils/utils'

const maxFileSize = 64 * 1024 * 1024 // 64MB
const maxFileSize = 128 * 1024 * 1024 // 128MB
Comment thread
nighca marked this conversation as resolved.
const convertTimeout = 60 * 1000 // 60s

/**
Expand Down