File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1818### Fixed
1919- Escape colon characters on search values for search box and advanced search to allow those values in a search.
2020- typesafe now only offers https access
21+ [ #49 ] ( https://github.com/clowder-framework/clowder/issues/49 )
22+ - if uploading files by url > 2147483647 it would fail
23+ [ #54 ] ( https://github.com/clowder-framework/clowder/issues/54 )
2124
2225## 1.10.1 - 2020-07-16
2326
Original file line number Diff line number Diff line change @@ -657,7 +657,7 @@ object FileUtils {
657657 // actually save the file
658658 val conn = url.openConnection()
659659
660- ByteStorageService .save(conn.getInputStream, " uploads" , conn.getContentLength ) match {
660+ ByteStorageService .save(conn.getInputStream, " uploads" , conn.getContentLengthLong ) match {
661661 case Some ((loader_id, loader, length)) => {
662662 files.get(file.id) match {
663663 case Some (f) => {
You can’t perform that action at this time.
0 commit comments