mirror of
				https://github.com/h7x4/unofficial_jisho_api_dart.git
				synced 2025-10-31 01:43:36 +01:00 
			
		
		
		
	Make dbpedia a string
This commit is contained in:
		| @@ -364,7 +364,7 @@ class JishoWordSense { | ||||
| class JishoAttribution { | ||||
|   bool jmdict; | ||||
|   bool jmnedict; | ||||
|   bool dbpedia; //This variable might be returned as a link (String). Not sure about the above | ||||
|   String dbpedia; | ||||
|  | ||||
|   JishoAttribution({ | ||||
|     this.jmdict, | ||||
| @@ -376,7 +376,7 @@ class JishoAttribution { | ||||
|     return JishoAttribution( | ||||
|       jmdict: (json['jmdict'].toString() == 'true'), | ||||
|       jmnedict: (json['jmnedict'].toString() == 'true'), | ||||
|       dbpedia: (json['dbpedia'].toString() == 'true') | ||||
|       dbpedia: (json['dbpedia'].toString() != 'false') ? json['dbpedia'].toString() : null | ||||
|     ); | ||||
|   } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user