Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fenner committed Mar 10, 2019
1 parent d8d12c3 commit 9737fec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/serializers/activity_serializer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ActivitySerializer

attribute "prov:wasAttributedTo" do |object|
url = Rails.env.production? ? "https://api.datacite.org" : "https://api.test.datacite.org"
object.username.include?(".") ? url + "/clients" + object.username : url + "/providers/" + object.username
object.username.include?(".") ? url + "/clients/" + object.username : url + "/providers/" + object.username
end

attribute "prov:wasGeneratedBy" do |object|
Expand Down
2 changes: 1 addition & 1 deletion config/initializers/_version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Lupo
class Application
VERSION = "2.3.40"
VERSION = "2.3.41"
REVISION = `git rev-parse HEAD`
end
end

0 comments on commit 9737fec

Please sign in to comment.