File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ Version 0.14.3
8
8
9
9
To be released.
10
10
11
+ - Fixed ` fedify inbox ` command where it had ignored ` -a ` /` --accept-follow `
12
+ options when no ` -f ` /` --follow ` option was provided. [[ #132 ]]
13
+
11
14
12
15
Version 0.14.2
13
16
--------------
@@ -125,6 +128,17 @@ Released on August 27, 2024.
125
128
[ #115 ] : https://github.com/dahlia/fedify/issues/115
126
129
127
130
131
+ Version 0.13.4
132
+ --------------
133
+
134
+ Released on September 1, 2024.
135
+
136
+ - Fixed ` fedify inbox ` command where it had ignored ` -a ` /` --accept-follow `
137
+ options when no ` -f ` /` --follow ` option was provided. [[ #132 ]]
138
+
139
+ [ #132 ] : https://github.com/dahlia/fedify/issues/132
140
+
141
+
128
142
Version 0.13.3
129
143
--------------
130
144
Original file line number Diff line number Diff line change @@ -81,10 +81,12 @@ export const command = new Command()
81
81
} ) ;
82
82
spinner . start ( ) ;
83
83
const fedCtx = federation . createContext ( server . url , - 1 ) ;
84
+ if ( options . acceptFollow != null && options . acceptFollow . length > 0 ) {
85
+ acceptFollows . push ( ...( options . acceptFollow ?? [ ] ) ) ;
86
+ }
84
87
if ( options . follow != null && options . follow . length > 0 ) {
85
88
spinner . text = "Following actors..." ;
86
89
const documentLoader = await fedCtx . getDocumentLoader ( { handle : "i" } ) ;
87
- acceptFollows . push ( ...( options . acceptFollow ?? [ ] ) ) ;
88
90
for ( const uri of options . follow ) {
89
91
spinner . text = `Following ${ colors . green ( uri ) } ...` ;
90
92
const actor = await lookupObject ( uri , { documentLoader } ) ;
You can’t perform that action at this time.
0 commit comments