File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ export class GithubCommand extends Command {
151
151
152
152
if ( result ) {
153
153
await interaction . deleteReply ( ) ;
154
- await interaction . reply ( { embeds : [ result ] } ) ;
154
+ await interaction . followUp ( { embeds : [ result ] } ) ;
155
155
return ;
156
156
}
157
157
}
@@ -165,7 +165,7 @@ export class GithubCommand extends Command {
165
165
166
166
if ( result ) {
167
167
await interaction . deleteReply ( ) ;
168
- await interaction . reply ( { embeds : [ result ] } ) ;
168
+ await interaction . followUp ( { embeds : [ result ] } ) ;
169
169
return ;
170
170
}
171
171
}
@@ -177,7 +177,7 @@ export class GithubCommand extends Command {
177
177
178
178
if ( result ) {
179
179
await interaction . deleteReply ( ) ;
180
- await interaction . reply ( { embeds : [ result ] } ) ;
180
+ await interaction . followUp ( { embeds : [ result ] } ) ;
181
181
return ;
182
182
}
183
183
}
@@ -263,6 +263,6 @@ export class ReviewListCommand extends Command {
263
263
const descriptionList = descriptions . map ( ( { description } ) => description ) . join ( "\n" ) ;
264
264
265
265
await interaction . deleteReply ( ) ;
266
- await interaction . reply ( { content : descriptionList } ) ;
266
+ await interaction . followUp ( { content : descriptionList } ) ;
267
267
}
268
268
}
You can’t perform that action at this time.
0 commit comments