mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 07:36:10 -04:00
This adds ".nearby/" to payloads that don't have a filename (they are using payloadid instead)
PiperOrigin-RevId: 416135626
This commit is contained in:
committed by
Copybara-Service
parent
c77356eb92
commit
52358d7992
@@ -318,7 +318,7 @@ std::string make_path(std::string parent_folder, int64_t id) {
|
||||
parent_folder.append("/");
|
||||
}
|
||||
|
||||
return parent_folder.append(std::to_string(id));
|
||||
return parent_folder.append(".nearby/" + std::to_string(id));
|
||||
}
|
||||
|
||||
std::unique_ptr<InternalPayload> CreateIncomingInternalPayload(
|
||||
|
||||
Reference in New Issue
Block a user