freeswitcher 0.6.2 → 0.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -65,7 +65,7 @@ module FSR
65
65
  private :before_session
66
66
 
67
67
  def handle_request(header, content)
68
- false
68
+ FSR::Log.warn "Unhandled request (#{header}, #{content})"
69
69
  end
70
70
 
71
71
  # receive_request is the callback method when data is recieved from the socket
@@ -85,7 +85,7 @@ module FSR
85
85
  when "auth/request"
86
86
  return
87
87
  else
88
- FSR::Log.warn "Unhandled request (#{header}, #{content})" unless handle_request(header, content)
88
+ handle_request(header, content)
89
89
  return
90
90
  end
91
91
  hash_content ||= {}
data/lib/fsr/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module FSR
2
- VERSION = "0.6.2"
2
+ VERSION = "0.6.3"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 2
9
- version: 0.6.2
8
+ - 3
9
+ version: 0.6.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jayson Vaughn