Skip to content

Commit 0330fe5

Browse files
committed
fix(backend): type is wrong for error
This was not an issue because the testing code did not check it. It is fixed now.
1 parent c795db2 commit 0330fe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/AcmStatisticsBackend.Core/ServiceClients/CrawlerApiBackendClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task<IReadOnlyCollection<CrawlerMetaItem>> GetCrawlerMeta()
3737
#pragma warning disable SA1300
3838
private class GetMetaReturn
3939
{
40-
public string error { get; set; }
40+
public bool error { get; set; }
4141

4242
public IDictionary<string, DataItem> data { get; set; }
4343
}

0 commit comments

Comments
 (0)