File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- (defproject alekcz /fire " 0.5.1 -SNAPSHOT"
1
+ (defproject alekcz /fire " 0.6.0 -SNAPSHOT"
2
2
:description " Firebase from Clojure. Basically Charmander 2.0"
3
3
:url " https://github.com/alekcz/fire"
4
4
:license {:name " EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
5
5
:url " https://www.eclipse.org/legal/epl-2.0/" }
6
6
:dependencies [ [org.clojure/clojure " 1.11.3" ]
7
7
[org.clojure/core.async " 1.6.681" ]
8
- [http-kit " 2.8 .0" ]
8
+ [http-kit " 2.7 .0" ]
9
9
[cheshire " 5.13.0" ]
10
10
[environ " 1.2.0" ]
11
11
[stylefruits/gniazdo " 1.2.1" ]
Original file line number Diff line number Diff line change 24
24
(if (< (utils/now ) (:expiry auth))
25
25
(:token auth)
26
26
(-> auth :env auth/create-token :token )))
27
- bucket (str (or (:project-id options) (:project-id auth)) " .appspot.com" )
27
+ bucket (or (:bucket options)
28
+ (str (or (:project-id options) (:project-id auth)) " .firebasestorage.app" ))
28
29
url (str domain " /" bucket url')
29
30
request-options (reduce utils/recursive-merge
30
31
[{:method method}
You can’t perform that action at this time.
0 commit comments