Skip to content

Commit 40dae71

Browse files
committed
Fix compile error
1 parent 8796ea4 commit 40dae71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/service/database/database.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ namespace service {
177177
if (res) {
178178
co_return {*res, err};
179179
}
180-
co_return {{}, err};
180+
co_return {ProjectSearchResponse{}, err};
181181
}
182182

183183
Task<bool> Database::existsForRepo(const std::string repo, const std::string branch, const std::string path) const {

0 commit comments

Comments
 (0)