Modifying export overview LaTex and nitter user id for deleted users.

This commit is contained in:
ruidajo 2022-05-25 11:50:30 -05:00
parent 7a7058f30c
commit 9544a92392
3 changed files with 17 additions and 8 deletions

View File

@ -1,11 +1,5 @@
accessing
exportOverviewReportLatex
self
exportDefaultReport;
externalWordCloud;
exportTweetsHistogramWithBars: 7;
exportRetweetsHistogramWithBars: 7;
exportRepliesHistogramWithBars: 7;
exportQuotesHistogramWithBars: 7.
self exportOverviewReportLatexWithBars: 9.
^ self folder

View File

@ -0,0 +1,11 @@
accessing
exportOverviewReportLatexWithBars: anInteger
self
exportDefaultReport;
externalWordCloud;
exportTweetsHistogramWithBars: anInteger;
exportRetweetsHistogramWithBars: anInteger;
exportRepliesHistogramWithBars: anInteger;
exportQuotesHistogramWithBars: anInteger.
^ self folder

View File

@ -1,3 +1,7 @@
accessing
id
^ id ifNil: [ id := (self profileImageUrl asUrl segments select: [ :each | each isAllDigits ]) first.]
^ id ifNil: [
self profileImageUrl
ifNil: [ id := 0 ]
ifNotNil: [ id := (self profileImageUrl asUrl segments select: [ :each | each isAllDigits ]) first. ]
]