aboutsummaryrefslogtreecommitdiffstats
path: root/bin/send-comments
diff options
context:
space:
mode:
Diffstat (limited to 'bin/send-comments')
-rwxr-xr-xbin/send-comments12
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/send-comments b/bin/send-comments
index b1c1463ce..b054ebd8f 100755
--- a/bin/send-comments
+++ b/bin/send-comments
@@ -69,6 +69,18 @@ while ( my $council = $councils->next ) {
next if bromley_retry_timeout( $comment );
}
+ if ( $council->area_id == 2482 ) {
+ my $extra = $comment->extra;
+ if ( !$extra ) {
+ $extra = {};
+ }
+
+ unless ( $extra->{title} ) {
+ $extra->{title} = $comment->user->title;
+ $comment->extra( $extra );
+ }
+ }
+
my $id = $o->post_service_request_update( $comment );
if ( $id ) {