Victor Yang
Victor Yang
@numbcoder 找到了一个解决方法,在 Rails 5.1.4 + Jbuilder 2.7.0 + wechat 0.8.12 可以正常使用 ```ruby class ApplicationController < ActionController::API include ActionView::Rendering def render_to_body(options) _render_to_body_with_renderer(options) || super end end ```
It seems still have this problem when I try the example above.
```ruby def add_custom_fields(&block) wrapped_block = Proc.new do |fields| LogStasher::CustomFields.add(*LogStasher.store.keys) instance_exec(fields, &block) end ::ActionController::Metal.send(:define_method, :logstasher_add_custom_fields_to_payload, &wrapped_block) ::ActionController::Base.send(:define_method, :logstasher_add_custom_fields_to_payload, &wrapped_block) end def add_custom_fields_to_request_context(&block) wrapped_block = Proc.new do |fields| instance_exec(fields, &block) LogStasher::CustomFields.add(*fields.keys) end...
@utkarshdalal It seems mongoid have some changes of the within_polygon syntax [mongoid spec test](https://github.com/mongodb/mongoid/blob/6.0.0-stable/spec/mongoid/criteria_spec.rb#L3640) ```ruby class Holiday include Mongoid::Document include Mongoid::Geospatial field :location, type: Point end Holiday.create!(location: [1,1]) => #...
Yes, other functions are working correctly. For example: - TA_Initialize() - TA_Shutdown() - TA_GroupTableAlloc() - All indicator functions (SMA, EMA, MACD, etc.) The issue seems to be specific to TA_GetVersionString()....
@mario4tier I tried replacing the declaration with extern "const char *TA_GetVersionString(void)", but the issue persists. I used [DLL Export Viewer](https://www.nirsoft.net/utils/dll_export_viewer.html) to check the DLL, and it seems that TA_GetVersionString is...