2
0
mirror of synced 2025-02-03 10:03:29 +00:00

[storage][js] update ref.toString - removed extra / and added gs:// prefix

This commit is contained in:
Salakar 2017-08-14 14:11:17 +01:00
parent 56fc189d26
commit 156e1a431c

View File

@ -19,7 +19,7 @@ export default class StorageReference extends ReferenceBase {
} }
toString(): String { toString(): String {
return `${this._storage.app.options.storageBucket}/${this.path}`; return `gs://${this._storage.app.options.storageBucket}${this.path}`;
} }
/** /**