summaryrefslogtreecommitdiffstats
path: root/src/rep.rs
diff options
context:
space:
mode:
authordoug tangren <d.tangren@gmail.com>2018-09-29 00:05:15 -0400
committerGitHub <noreply@github.com>2018-09-29 00:05:15 -0400
commiteec5876731b40f0074a71793efa0b0f4f627989f (patch)
tree21dc311d8ea408e538b3775d60365f8f859fed2d /src/rep.rs
parent271cab54b18720271a956ca1602da5e33429170a (diff)
parentaa3c0f94aa410bef61960b32cfe39946ed71d18e (diff)
Merge pull request #89 from ic/search_rep_fix
Solution to the MissingFieldError problem on /images/search.
Diffstat (limited to 'src/rep.rs')
-rw-r--r--src/rep.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rep.rs b/src/rep.rs
index b9c048b..9cb972b 100644
--- a/src/rep.rs
+++ b/src/rep.rs
@@ -6,7 +6,7 @@ use std::collections::HashMap;
pub struct SearchResult {
pub description: String,
pub is_official: bool,
- pub is_trusted: bool,
+ pub is_automated: bool,
pub name: String,
pub star_count: u64,
}