We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f86d8 commit fcd1edcCopy full SHA for fcd1edc
storage/src/ios/metadata_ios.mm
@@ -183,12 +183,8 @@ static int64_t NSDateToMilliseconds(NSDate *date) {
183
const char* MetadataInternal::path() { return NSStringToCString(impl().path, &path_); }
184
185
StorageReferenceInternal* MetadataInternal::GetReference() {
186
- if (storage_ && impl()) {
187
- return new StorageReferenceInternal(
188
- storage_, std::make_unique<FIRStorageReferencePointer>(impl().storageReference));
189
- } else {
190
- return nullptr;
191
- }
+ // There is no way to get this information on iOS anymore.
+ return nullptr;
192
}
193
194
int64_t MetadataInternal::size_bytes() { return static_cast<int64_t>(impl().size); }
0 commit comments