mirror of
https://git.asonix.dog/asonix/activitystreams.git
synced 2024-11-22 03:40:59 +00:00
Fix image -> icon extraction in Object extension
This commit is contained in:
parent
8822ab58ec
commit
6d0f4c3acd
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "activitystreams"
|
||||
description = "A set of core types and traits for activitystreams data"
|
||||
version = "0.7.0-alpha.9"
|
||||
version = "0.7.0-alpha.10"
|
||||
license = "GPL-3.0"
|
||||
authors = ["asonix <asonix@asonix.dog>"]
|
||||
repository = "https://git.asonix.dog/Aardwolf/activitystreams"
|
||||
|
|
|
@ -4795,7 +4795,7 @@ impl<Kind> Object<Kind> {
|
|||
summary: base.remove("summary")?,
|
||||
url: base.remove("url")?,
|
||||
generator: base.remove("generator")?,
|
||||
icon: base.remove("image")?,
|
||||
icon: base.remove("icon")?,
|
||||
image: base.remove("image")?,
|
||||
location: base.remove("location")?,
|
||||
tag: base.remove("tag")?,
|
||||
|
|
Loading…
Reference in a new issue