2022-04-01 22:22:33 +00:00
|
|
|
accessing
|
|
|
|
fromNitterRssItem: xmlItem
|
|
|
|
| author |
|
|
|
|
author := (xmlItem xpath: 'dc:creator') stringValue allButFirst.
|
|
|
|
user := NitterUser new
|
|
|
|
userName: author .
|
|
|
|
created := (xmlItem xpath: 'pubDate') stringValue.
|
2022-04-02 00:34:30 +00:00
|
|
|
text := (xmlItem xpath: 'description') stringValue.
|
2022-04-06 14:50:50 +00:00
|
|
|
id := ((xmlItem xpath: 'guid') stringValue splitOn: '/') last copyReplaceAll: '#m' with: ''.
|
|
|
|
authorId := self user id.
|