[storage][js] update ref.toString - removed extra `/` and added `gs://` prefix
This commit is contained in:
parent
56fc189d26
commit
156e1a431c
|
@ -19,7 +19,7 @@ export default class StorageReference extends ReferenceBase {
|
|||
}
|
||||
|
||||
toString(): String {
|
||||
return `${this._storage.app.options.storageBucket}/${this.path}`;
|
||||
return `gs://${this._storage.app.options.storageBucket}${this.path}`;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue