Skip to content

Commit 4bd194f

Browse files
committed
Exclude emoji from description to be compatible with RSS 2.0 specification
1 parent 62ce886 commit 4bd194f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/controllers/podcasts_controller.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class PodcastsController < ApplicationController
22
def index
33
@title = 'DojoCast'
4-
@description = 'Highlight people around CoderDojo communities by Podcast 📻✨'
4+
@description = 'Highlight people around CoderDojo communities by Podcast.'
55
@episodes = Podcast.all.sort_by{|episode| episode.published_at }
66
@url = request.url
77
@next_live_date = ENV['NEXT_LIVE_DATE'] || '未定'

app/views/podcasts/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="container" style="line-height: 2.2em;">
88
<section class="keiyaku" style="padding: 50px 0px 0px 0px;">
99
<h1 style="text-align: center;"><%= @title %></h1>
10-
<p style="text-align: center; padding-bottom: 100px;"><%= @description %></p>
10+
<p style="text-align: center; padding-bottom: 100px;"><%= @description %> 📻✨</p>
1111

1212
<h3 id="live" style="text-align: center; padding-bottom: 10px;">🎙 次回ライブ配信: <br class="ignore-pc"><%= @next_live_date %></h3>
1313
<iframe src="https://mixlr.com/users/6058871/embed"

0 commit comments

Comments
 (0)