Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62503603 authored by Yifan Hong's avatar Yifan Hong
Browse files

libsnapshot: correct DeviceInfo paths

Test: pass
Bug: 135752105
Change-Id: Icb8eb35db9c297537131076721eb7ce868d59625
parent 23a87716
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ static constexpr uint32_t kSnapshotChunkSize = 8;
class DeviceInfo final : public SnapshotManager::IDeviceInfo {
  public:
    std::string GetGsidDir() const override { return "ota"s; }
    std::string GetMetadataDir() const override { return "/metadata/ota/test"s; }
    std::string GetMetadataDir() const override { return "/metadata/ota"s; }
    bool IsRunningSnapshot() const override;
};