mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-25 15:25:59 +03:00
[GH-ISSUE #75] File Manager issue #30
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#30
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Krytox on GitHub (May 4, 2015).
Original GitHub issue: https://github.com/quasar/Quasar/issues/75
Apparently, the files with the size over 2mb cannot be downloaded the window just closes and client reconnects.
@yankejustin commented on GitHub (May 5, 2015):
The issue is not always capped at 2mb. After messing with this issue a bit, I believe the largest file I have been able to successfully download was ~8.5mb.
@yankejustin commented on GitHub (May 5, 2015):
Also, for those interested in helping us fix this issue, there is an "InvalidOperationException" being thrown somewhere. That is the likely cause of the inability to download medium-large files...
@MaxXor commented on GitHub (May 5, 2015):
The client/server can transfer max. 2MB at once. Each file was split into parts of 2MB - 5 Bytes, this is too little. After encrypting the part of the file, it can be over 2MB (happens for already compressed files like mp3 or zip/rar-archives). This will make the client loose the connection and then reconnect, the server receives an invalid packet.